aboutsummaryrefslogtreecommitdiffstats
path: root/native/include/linprog/cplex.h
blob: 7c4f8b5dc6ed349434fdb7a580e8e66ae471eb90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef LINPROG_CPLEX_H
#define LINPROG_CPLEX_H

#include "linprog/model.h"

class Solution;

// solve with CPLEX connected via the "Concert Technology" API
Solution *cplex_solve(const LinearProgram& lp, unsigned int max_num_vars);

// solve with CPLEX connected via the plain, old C API
Solution *cpx_solve(const LinearProgram& lp, unsigned int max_num_vars);

#include "linprog/solver.h"

#endif