Untitled
user_7004296
python
3 years ago
316 B
10
Indexable
from gams import *
import os
import sys
if __name__ == "__main__":
if len(sys.argv) > 1:
ws = GamsWorkspace()
else:
ws = GamsWorkspace(working_directory=r'C://MINLP')
t1 = ws.add_job_from_file('Doktorat_MINLP_model.gms')
t1.run()
print("Schedule Optimized Successfuly")Editor is loading...