diff -r d59bea55db9b -r c445c931472f examples/iptsamp.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/iptsamp.c Mon Dec 06 13:09:21 2010 +0100 @@ -0,0 +1,17 @@ +/* iptsamp.c */ + +#include +#include +#include + +int main(void) +{ glp_prob *P; + P = glp_create_prob(); + glp_read_mps(P, GLP_MPS_DECK, NULL, "25fv47.mps"); + glp_interior(P, NULL); + glp_print_ipt(P, "25fv47.txt"); + glp_delete_prob(P); + return 0; +} + +/* eof */