public interface GlpkTerminalListener
GLPK will call method GlpkTerminal.output
before producing terminal output. A listener can
inhibit the terminal output by returning false
in the
output
routine.
If a GlpkExeption
has occured it is necessary to
call
GLPK.glp_term_hook(null, null);to reenable listening to terminal output.
Modifier and Type | Method and Description |
---|---|
boolean |
output(java.lang.String str)
Receive terminal output.
|