aboutsummaryrefslogtreecommitdiffstats
path: root/native/include
diff options
context:
space:
mode:
authorBjoern Brandenburg <bbb@mpi-sws.org>2012-08-07 14:19:14 -0400
committerBjoern Brandenburg <bbb@mpi-sws.org>2013-02-12 06:49:39 -0500
commita4ff45bfbaef292ee1106b759c7ae80213b03cd4 (patch)
treea13c4046ce6be77257bdd028fbc2896a6af161e3 /native/include
parent673f367fc5835ebce3357dfebee9c0e414e5c09b (diff)
Add CPLEX integration
This patch introduces a concrete subclass of Solution that implements the actual solving of linear programs by means of invoking the CPLEX Concert Technology API. The project can still be compiled on systems that do not have CPLEX installed.
Diffstat (limited to 'native/include')
-rw-r--r--native/include/linprog/cplex.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/native/include/linprog/cplex.h b/native/include/linprog/cplex.h
new file mode 100644
index 0000000..c68bd24
--- /dev/null
+++ b/native/include/linprog/cplex.h
@@ -0,0 +1,8 @@
1#ifndef LINPROG_CPLEX_H
2#define LINPROG_CPLEX_H
3
4#include "linprog/solver.h"
5
6Solution *cplex_solve(const LinearProgram& lp, unsigned int max_num_vars);
7
8#endif