Originally posted by: BLAIS
Alex,
Thank you for your answer. What I want is to only specify a list of parameter to tune and the tuner test the all possible combination.
By example, if I give a model, a data file and the following list:
[("TiLim", [DoubleParam 140.0]);
("RootAlg", [IntParam 4]);
("BarAlg", [ IntParam 3]);
("BarStartAlg", [IntParam 4]);
("BarOrder", [IntParam 1;IntParam 2;IntParam 3]);
("BarCrossAlg", [IntParam 1]);
("BarColNz", [IntParam 229;IntParam 100;IntParam 300;IntParam 400]);
("EpGap", [DoubleParam 0.05]);
("NodeAlg", [IntParam 4]);
("HeurFreq",[IntParam 10]);
("CutPass", [IntParam -1]);
]
All combination of BasOrder and BarColNz will be test. Others parameters in the list are only set once.
I want to give a list and change it easily.
I post a small .NET code that does this job on: http://www.fssnip.net/7PD
#DecisionOptimization#OPLusingCPLEXOptimizer