Search found 2 matches

by afust
4 years ago
Forum: Tools
Topic: Problems with launching gams studio in ubuntu
Replies: 2
Views: 30592

Re: Problems with launching gams studio in ubuntu

Hi Gamsisbestworld, GAMS Studio is a dedicated application, which is located in the GAMS system directory. In your case it is /opt/gams30.2_linux_x64_64_sfx/studio/studio.AppImage To execute Studio you can either navigate to this location using your file manager and double click on the AppImage or y...
by afust
6 years ago
Forum: API
Topic: Is there a GAMSCallback - like GRBCallback
Replies: 1
Views: 3757

Re: Is there a GAMSCallback - like GRBCallback

Hi Stephocke, you can get the gams process ouput by using the GAMSJob::run(GAMSOptions& gamsOptions, std::ostream& outstream) method, which is used in the example below. #include "gams.h" #include <iostream> using namespace gams; using namespace std; int main(int argc, char* argv[]...