I have a program with multiple submodels. I want to write the submodels (procs) in different gauss files and want to run them from another file. How can I write different procs in different files and make them visible from another gauss file?
1 Answer
0
The two recommended ways to make a GAUSS proc that you create available to multiple GAUSS programs are:
-
Create a file
procedure_name.g
and save it somewhere in your GAUSS source path. - Create a GAUSS library and add these procedures to the library.
You can find more information about this in the second half of the blog post, The Basics of GAUSS Procedures.
Your Answer
1 Answer
The two recommended ways to make a GAUSS proc that you create available to multiple GAUSS programs are:
-
Create a file
procedure_name.g
and save it somewhere in your GAUSS source path. - Create a GAUSS library and add these procedures to the library.
You can find more information about this in the second half of the blog post, The Basics of GAUSS Procedures.