summaryrefslogtreecommitdiff
path: root/src/theory/arith/approx_simplex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/approx_simplex.cpp')
-rw-r--r--src/theory/arith/approx_simplex.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/arith/approx_simplex.cpp b/src/theory/arith/approx_simplex.cpp
index d6be9f657..5777337ee 100644
--- a/src/theory/arith/approx_simplex.cpp
+++ b/src/theory/arith/approx_simplex.cpp
@@ -147,6 +147,7 @@ public:
}
virtual void setOptCoeffs(const ArithRatPairVec& ref);
+ static void printGLPKStatus(int status, std::ostream& out);
private:
Solution extractSolution(bool mip) const;
};
@@ -361,7 +362,7 @@ void ApproxGLPK::setOptCoeffs(const ArithRatPairVec& ref){
* check with FCSimplex
*/
-static void printGLPKStatus(int status, std::ostream& out){
+void ApproxGLPK::printGLPKStatus(int status, std::ostream& out){
switch(status){
case GLP_OPT:
out << "GLP_OPT" << endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback