cap prob type and level

This commit is contained in:
2023-06-10 21:26:35 +08:00
parent 7a08a52f3f
commit 3b9252d93d
9 changed files with 35 additions and 16 deletions

3
orm.py
View File

@@ -62,7 +62,8 @@ class Experiment(Base):
firm_acc_prf_conn = Column(Boolean, nullable=False)
netw_sply_prf_n = Column(DECIMAL(8, 4), nullable=False)
netw_sply_prf_size = Column(DECIMAL(8, 4), nullable=False)
cap_limit = Column(Integer, nullable=False)
cap_limit_prob_type = Column(String(16), nullable=False)
cap_limit_level = Column(DECIMAL(8, 4), nullable=False)
diff_new_conn = Column(DECIMAL(8, 4), nullable=False)
diff_remove = Column(DECIMAL(8, 4), nullable=False)
proactive_ratio = Column(DECIMAL(8, 4), nullable=False)