Hello,
I’m trying to execute gams sequentially from multiple scenarios, where the results of the previous scenario are used in the next execution, for that, I’m using the gams transfer API. The first scenario executes correctly, but the next scenario gives me this error:
raise gams.control.workspace.GamsException(“Checkpoint file " + checkpoint._checkpoint_file_name + " does not exist”)
gams.control.workspace.GamsException: Checkpoint file {dir}_gams_py_gcp1.g00 does not exist
I know these files are generated during the execution of the checkpoint (GamsWorkspace().add_checkpoint()) before the execution of the simulation ({MODEL}.run()), nevertheless, the error should appear at the execution of the first scenario but doesn’t happen.