Untitled

 avatar
user_7004296
python
2 years ago
316 B
5
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...