Put server services related scripts under the server-services folder.
3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2006
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 LpSolverBase &LpSkeleton::_newLp()
31 LpSolverBase &LpSkeleton::_copyLp()
37 int LpSkeleton::_addCol()
42 int LpSkeleton::_addRow()
47 void LpSkeleton::_eraseCol(int ) {
50 void LpSkeleton::_eraseRow(int) {
53 void LpSkeleton::_getColName(int, std::string &) {
57 void LpSkeleton::_setColName(int, const std::string &) {
61 void LpSkeleton::_setRowCoeffs(int, LpRowIterator, LpRowIterator) {
64 void LpSkeleton::_setColCoeffs(int, LpColIterator, LpColIterator) {
67 void LpSkeleton::_setCoeff(int, int, Value )
72 void LpSkeleton::_setColLowerBound(int, Value)
76 void LpSkeleton::_setColUpperBound(int, Value)
80 // void LpSkeleton::_setRowLowerBound(int, Value)
84 // void LpSkeleton::_setRowUpperBound(int, Value)
88 void LpSkeleton::_setRowBounds(int, Value, Value)
92 void LpSkeleton::_setObjCoeff(int, Value)
96 void LpSkeleton::_setMax()
100 void LpSkeleton::_setMin()
104 void LpSkeleton::_clearObj()
108 LpSkeleton::SolveExitStatus LpSkeleton::_solve()
113 LpSkeleton::Value LpSkeleton::_getPrimal(int)
118 LpSkeleton::Value LpSkeleton::_getDual(int)
123 LpSkeleton::Value LpSkeleton::_getPrimalValue()
128 LpSkeleton::SolutionStatus LpSkeleton::_getPrimalStatus()
133 LpSkeleton::SolutionStatus LpSkeleton::_getDualStatus()
138 LpSkeleton::ProblemTypes LpSkeleton::_getProblemType()
143 bool LpSkeleton::_isBasicCol(int)