diff options
Diffstat (limited to 'glpk-5.0/src/api/netgen.c')
-rw-r--r-- | glpk-5.0/src/api/netgen.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/glpk-5.0/src/api/netgen.c b/glpk-5.0/src/api/netgen.c new file mode 100644 index 0000000..ec556ad --- /dev/null +++ b/glpk-5.0/src/api/netgen.c @@ -0,0 +1,20 @@ +/* netgen.c */ + +#include "env.h" +#include "glpk.h" + +int glp_netgen(glp_graph *G_, int v_rhs_, int a_cap_, int a_cost_, + const int parm[1+15]) +{ static const char func[] = "glp_netgen"; + xassert(G_ == G_); + xassert(v_rhs_ == v_rhs_); + xassert(a_cap_ == a_cap_); + xassert(a_cost_ == a_cost_); + xassert(parm == parm); + xerror("%s: sorry, this routine is temporarily disabled due to li" + "censing problems\n", func); + abort(); + return -1; +} + +/* eof */ |