From ef800d4ffafdbde7d7a172ad73bd984b1695c138 Mon Sep 17 00:00:00 2001 From: Pasha Date: Fri, 27 Jan 2023 00:54:07 +0000 Subject: simplex-glpk with modified glpk for fpga --- glpk-5.0/src/api/netgen.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 glpk-5.0/src/api/netgen.c (limited to 'glpk-5.0/src/api/netgen.c') 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 */ -- cgit v1.2.1