Is it possible to have two submodles (.mos) running in parallel as input data for a master problem?
Is it correct to repeat twice the next code, one for each sub model? Because I have one bim file for each sub model, in my case 2 bim files.
declarations A = 1..10 modPar: array(A) of Model end-declarations
if compile("rtparams.mos")<>0 then exit(1) end-if
forall(i in A) do
load(modPar(i), "rtparams.bim")
run(modPar(i), "PARAM1=" + i)
end-do
forall(i in A) do wait dropnextevent
end-model