我正在尝试在Pyomo/AMPL
. 为此,我需要先定义模型,对于AMPL
:
model model_1.mod
model model_2.mod
model model_3.mod
...
model model_n.mod
对于Pyomo
:
model_1 = ConcreteModel()
model_2 = ConcreteModel()
...
model_n = ConcreteModel()
我想知道是否有一种自动方法可以做到这一点,无论是使用 for 循环还是一些索引,这样如果 n=100 我就不必写 100 model_k = ConcreteModel()
。