Hi, Yaron.
Gusek was made like a fork of the SciTE editor dedicated to GLPK.
So, you can use SciTE native resources like:
A) Edit / include menus to run external tools /scripts
(
http://www.scintilla.org/SciTEFAQ.html#ToolsMenu)
See gmpl.properties: Menu options -> open gmpl.properties
B) Use Lua Scripting
See
http://www.scintilla.org/SciTELua.html
C) Directly run batch files
Open a batch file in Gusek then "run" it.
For example: you can run a custom batch file from Gusek,
calling glpsol.exe to solve your model, and then performing another
tasks, like this:
glpsol.exe --cuts -m
"test.mod"
call mybatch.bat
delete *.tmp
The batch output will be show in the Gusek output pane.
Tip: you can use GMPL to generate dynamic batch files too, echoing
commands like below, and call them from another batch file.
param myfile symbolic :=
"test.bat";
printf "echo off\n" > myfile;
printf "echo Hello, there!\n" >> myfile;
printf "pause\n" >> myfile;
end;
Wish this tips helps.
Regards!
Luiz
Yaron Kretchmer escreveu:
Luiz-
Here's a Gusek question for you: Can I specify a post-processing script
(like a shell script ) that will be run once Gusek is done solving?
Regards from California
Yaron
---------- Forwarded message ----------
From:
Yaron Kretchmer <address@hidden>
Date: Thu, Jul 30, 2009 at 10:36 AM
Subject: Gusek question
To:
address@hidden
Hi There.
I'd like to run a post-processing script (i.e. some shell script of
windows batch) after GLPK has been run, so as the results are better
formatted. Is there a hook in Gusek to do that?
Thanks
Yaron