This repository has been archived on 2019-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
aro/test.h
2019-10-22 12:48:16 +02:00

8 lines
197 B
C

#ifndef GLPK
#define GLPK
#include <glpk.h> /* GNU GLPK linear/mixed integer solver */
#endif
int *column_generator();
void add_column(glp_prob *lp, float coef);
void add_column_sp(glp_prob *lp);