This commit is contained in:
Artur Meski
2019-02-22 22:10:17 +00:00
parent 0e4a58a9af
commit beef6c5f4e

View File

@@ -9,10 +9,10 @@ def gen_expr():
prs = ReactionSystemWithConcentrationsParam()
entities = ["a", "b", "c", "h"]
ent_with_conc = [("a", 3), ("b",2), ("c",1), ("h",1)]
for ent in entities:
prs.add_bg_set_entity((ent, 3))
for ec in ent_with_conc:
prs.add_bg_set_entity(ec)
lda = prs.get_param("lda")