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

Export solution in R as .sol file?

回答済み

コメント

1件のコメント

  • Eli Towle
    Gurobi Staff Gurobi Staff

    The gurobi_write() function is used to write model files, not solution files. You can write a solution file via the ResultFile parameter. For example:

    params <- list(ResultFile="test.sol")
    result <- gurobi(m, params)
    0

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