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

Dynamically updating the parameters file

回答済み

コメント

2件のコメント

  • 正式なコメント
    Simranjit Kaur
    • Gurobi Staff
    This post is more than three years old. Some information may not be up to date. For current information, please check the Gurobi Documentation or Knowledge Base. If you need more help, please create a new post in the community forum. Or why not try our AI Gurobot?.
  • Jaromił Najman
    • Gurobi Staff

    Hi Juan,

    In your code snippet, you are reading the param files via the global readParams function but then you write the parameters using the model.write() method. You have to either read the parameters into the model

    m = gp.Model()
    m.read(parameters_file)
    string_export_parameters_file = index_file + parameters_file
    m.write(string_export_parameters_file)

    or write them using the global writeParams() function

    gp.readParams(parameters_file)
    string_export_parameters_file = index_file + parameters_file
    gp.writeParams(string_export_parameters_file)

    Best regards,
    Jaromił

    0

投稿コメントは受け付けていません。