You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
s = message_ix.Scenario(...)
s.solve(solve_options={'lpmethod': whatever})
But because both of these need to be called either everytime when loading message_ix or when calling the solve command, the only other way to permanently change the solver options is in the source code directly (option 3). Therefore, it should be possible to provide user specific configurations via a config file.
The text was updated successfully, but these errors were encountered:
Currently, cplex solver options can be set either of three ways:
from message_ix.models import DEFAULT_CPLEX_OPTIONS
DEFAULT_CPLEX_OPTIONS['lpmethod'] = whatever
s.solve(solve_options={'lpmethod': whatever})
But because both of these need to be called either everytime when loading message_ix or when calling the solve command, the only other way to permanently change the solver options is in the source code directly (option 3). Therefore, it should be possible to provide user specific configurations via a config file.
The text was updated successfully, but these errors were encountered: