1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2008
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
19 #include <lemon/lp_skeleton.h>
22 ///\brief A skeleton file to implement LP solver interfaces
25 int SkeletonSolverBase::_addCol()
30 int SkeletonSolverBase::_addRow()
35 void SkeletonSolverBase::_eraseCol(int) {}
36 void SkeletonSolverBase::_eraseRow(int) {}
38 void SkeletonSolverBase::_getColName(int, std::string &) const {}
39 void SkeletonSolverBase::_setColName(int, const std::string &) {}
40 int SkeletonSolverBase::_colByName(const std::string&) const { return -1; }
42 void SkeletonSolverBase::_getRowName(int, std::string &) const {}
43 void SkeletonSolverBase::_setRowName(int, const std::string &) {}
44 int SkeletonSolverBase::_rowByName(const std::string&) const { return -1; }
46 void SkeletonSolverBase::_setRowCoeffs(int, ExprIterator, ExprIterator) {}
47 void SkeletonSolverBase::_getRowCoeffs(int, InsertIterator) const {}
49 void SkeletonSolverBase::_setColCoeffs(int, ExprIterator, ExprIterator) {}
50 void SkeletonSolverBase::_getColCoeffs(int, InsertIterator) const {}
52 void SkeletonSolverBase::_setCoeff(int, int, Value) {}
53 SkeletonSolverBase::Value SkeletonSolverBase::_getCoeff(int, int) const
56 void SkeletonSolverBase::_setColLowerBound(int, Value) {}
57 SkeletonSolverBase::Value SkeletonSolverBase::_getColLowerBound(int) const
60 void SkeletonSolverBase::_setColUpperBound(int, Value) {}
61 SkeletonSolverBase::Value SkeletonSolverBase::_getColUpperBound(int) const
64 void SkeletonSolverBase::_setRowLowerBound(int, Value) {}
65 SkeletonSolverBase::Value SkeletonSolverBase::_getRowLowerBound(int) const
68 void SkeletonSolverBase::_setRowUpperBound(int, Value) {}
69 SkeletonSolverBase::Value SkeletonSolverBase::_getRowUpperBound(int) const
72 void SkeletonSolverBase::_setObjCoeffs(ExprIterator, ExprIterator) {}
73 void SkeletonSolverBase::_getObjCoeffs(InsertIterator) const {};
75 void SkeletonSolverBase::_setObjCoeff(int, Value) {}
76 SkeletonSolverBase::Value SkeletonSolverBase::_getObjCoeff(int) const
79 void SkeletonSolverBase::_setSense(Sense) {}
80 SkeletonSolverBase::Sense SkeletonSolverBase::_getSense() const
83 void SkeletonSolverBase::_clear() {
84 row_num = col_num = 0;
87 LpSkeleton::SolveExitStatus LpSkeleton::_solve() { return SOLVED; }
89 LpSkeleton::Value LpSkeleton::_getPrimal(int) const { return 0; }
90 LpSkeleton::Value LpSkeleton::_getDual(int) const { return 0; }
91 LpSkeleton::Value LpSkeleton::_getPrimalValue() const { return 0; }
93 LpSkeleton::Value LpSkeleton::_getPrimalRay(int) const { return 0; }
94 LpSkeleton::Value LpSkeleton::_getDualRay(int) const { return 0; }
96 LpSkeleton::ProblemType LpSkeleton::_getPrimalType() const
99 LpSkeleton::ProblemType LpSkeleton::_getDualType() const
100 { return UNDEFINED; }
102 LpSkeleton::VarStatus LpSkeleton::_getColStatus(int) const
105 LpSkeleton::VarStatus LpSkeleton::_getRowStatus(int) const
108 LpSkeleton* LpSkeleton::_newSolver() const
109 { return static_cast<LpSkeleton*>(0); }
111 LpSkeleton* LpSkeleton::_cloneSolver() const
112 { return static_cast<LpSkeleton*>(0); }
114 const char* LpSkeleton::_solverName() const { return "LpSkeleton"; }
116 MipSkeleton::SolveExitStatus MipSkeleton::_solve()
119 MipSkeleton::Value MipSkeleton::_getSol(int) const { return 0; }
120 MipSkeleton::Value MipSkeleton::_getSolValue() const { return 0; }
122 MipSkeleton::ProblemType MipSkeleton::_getType() const
123 { return UNDEFINED; }
125 MipSkeleton* MipSkeleton::_newSolver() const
126 { return static_cast<MipSkeleton*>(0); }
128 MipSkeleton* MipSkeleton::_cloneSolver() const
129 { return static_cast<MipSkeleton*>(0); }
131 const char* MipSkeleton::_solverName() const { return "MipSkeleton"; }