blob: 1b5fa1a17bb60b3cdc90aad44fca3887670400fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef LINPROG_GLPK_H
#define LINPROG_GLPK_H
#include "linprog/model.h"
class Solution;
Solution *glpk_solve(const LinearProgram& lp, unsigned int max_num_vars);
#include "linprog/solver.h"
#endif
|