Hey
how can we check running status of a process in Polymake ?
Consider the following code:
polytope > $f=lp2poly('LPMTjt.lp');
I typed this command and it is stuck there. The Linear program in LPMTjt.lp consists of 760 variables. Can you tell me if there is some sort of input restriction for the above command ? and if not, then how can we see whether the process is running or not ?
Thanks & Regards
Pratibha Saini
Basically you can't, unless some external program is involved. Which is not the case when reading a linear program.
There is no technical restriction on the size of the input, but 760 variables means your polyhedron lives in 760-dimensional space (though its dimension may be lower, that depends on your input), and that is quite large for any but trivial computations. There is some input checking involded in reading an lp-file. Either computations take that long, or you ran out of memory.
lp-file conversion is in a perl-subroutine. As long as polymake has not crashed this will be working.
Best
Andreas