-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyGams2.gms
36 lines (25 loc) · 1.31 KB
/
MyGams2.gms
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
$title pscopf_run
$ontext
runs everything
usage:
gams MyGams.gms --case="case_file_name.gms"
e.g.
gams MyGams.gms --case=pscopf_data.gms
or
gams MyGams.gms --case=pscopf_data_hacked_case14.gms
$offtext
$if not set case $abort 'usage: gams MyGams2.gms --case="case_file_name.gms"'
* for testing:
$if not set do_infeas $set do_infeas 0
$if not set do_bad_output $set do_bad_output 0
$if not set do_compile_error $set do_compile_error 0
$if not set do_exec_error $set do_exec_error 0
* check existence of required files
$if not exist '%case%' $abort 'specified data file "%case%" does not exist'
$if not exist pscopf_run.gms $abort 'missing file "pscopf_run.gms"'
$if not exist pscopf_prepare_data.gms $abort 'missing file "pscopf_prepare_data.gms"'
$if not exist pscopf.gms $abort 'missing file "pscopf.gms"'
*$if not exist pscopf_output_format0.gms $abort 'missing file "pscopf_output_format0.gms"'
*$if not exist pscopf_output_format1.gms $abort 'missing file "pscopf_output_format1.gms"'
$if not exist pscopf_write_solution.gms $abort 'missing file "pscopf_write_solution.gms"'
$call 'gams pscopf_run.gms --ingms=%case% --soltxt=solution2.txt --nlp=ipopth --do_infeas=%do_infeas% --do_bad_output=%do_bad_output% --do_compile_error=%do_compile_error% --do_exec_error=%do_exec_error%'