メインコンテンツへスキップ

Gurobi options in GAMS

回答済み

コメント

1件のコメント

  • Eli Towle
    Gurobi Staff Gurobi Staff

    You can create a solver options file that contains the Gurobi-specific parameters you want to use. For example:

    Model mymodel / all /;

    $onecho > gurobi.opt
    mipfocus 1
    scaleflag 2
    $offecho
    mymodel.optfile = 1;

    option Solver=gurobi;
    solve mymodel using mip minimizing z;
    0

サインインしてコメントを残してください。