Location: LEMON/LEMON-main/lemon/lp_skeleton.h

Load file history
gravatar
deba@inf.elte.hu
Fix the naming convention of guards and remove one unnecessary include
/* -*- mode: C++; indent-tabs-mode: nil; -*-
*
* This file is a part of LEMON, a generic C++ optimization library.
*
* Copyright (C) 2003-2008
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
* (Egervary Research Group on Combinatorial Optimization, EGRES).
*
* Permission to use, modify and distribute this software is granted
* provided that this copyright notice appears in all copies. For
* precise terms see the accompanying LICENSE file.
*
* This software is provided "AS IS" with no warranty of any kind,
* express or implied, and with no claim as to its suitability for any
* purpose.
*
*/
#ifndef LEMON_LP_SKELETON_H
#define LEMON_LP_SKELETON_H
#include <lemon/lp_base.h>
///\file
///\brief A skeleton file to implement LP solver interfaces
namespace lemon {
///A skeleton class to implement LP solver interfaces
class SkeletonSolverBase : public virtual LpBase {
int col_num,row_num;
protected:
SkeletonSolverBase()
: col_num(-1), row_num(-1) {}
/// \e
virtual int _addCol();
/// \e
virtual int _addRow();
/// \e
virtual void _eraseCol(int i);
/// \e
virtual void _eraseRow(int i);
/// \e
virtual void _getColName(int col, std::string& name) const;
/// \e
virtual void _setColName(int col, const std::string& name);
/// \e
virtual int _colByName(const std::string& name) const;
/// \e
virtual void _getRowName(int row, std::string& name) const;
/// \e
virtual void _setRowName(int row, const std::string& name);
/// \e
virtual int _rowByName(const std::string& name) const;
/// \e
virtual void _setRowCoeffs(int i, ExprIterator b, ExprIterator e);
/// \e
virtual void _getRowCoeffs(int i, InsertIterator b) const;
/// \e
virtual void _setColCoeffs(int i, ExprIterator b, ExprIterator e);
/// \e
virtual void _getColCoeffs(int i, InsertIterator b) const;
/// Set one element of the coefficient matrix
virtual void _setCoeff(int row, int col, Value value);
/// Get one element of the coefficient matrix
virtual Value _getCoeff(int row, int col) const;
/// The lower bound of a variable (column) have to be given by an
/// extended number of type Value, i.e. a finite number of type
/// Value or -\ref INF.
virtual void _setColLowerBound(int i, Value value);
/// \e
/// The lower bound of a variable (column) is an
/// extended number of type Value, i.e. a finite number of type
/// Value or -\ref INF.
virtual Value _getColLowerBound(int i) const;
/// The upper bound of a variable (column) have to be given by an
/// extended number of type Value, i.e. a finite number of type
/// Value or \ref INF.
virtual void _setColUpperBound(int i, Value value);
/// \e
/// The upper bound of a variable (column) is an
/// extended number of type Value, i.e. a finite number of type
/// Value or \ref INF.
virtual Value _getColUpperBound(int i) const;
/// The lower bound of a constraint (row) have to be given by an
/// extended number of type Value, i.e. a finite number of type
/// Value or -\ref INF.
virtual void _setRowLowerBound(int i, Value value);
/// \e
/// The lower bound of a constraint (row) is an
/// extended number of type Value, i.e. a finite number of type
/// Value or -\ref INF.
virtual Value _getRowLowerBound(int i) const;
/// The upper bound of a constraint (row) have to be given by an
/// extended number of type Value, i.e. a finite number of type
/// Value or \ref INF.
virtual void _setRowUpperBound(int i, Value value);
/// \e
/// The upper bound of a constraint (row) is an
/// extended number of type Value, i.e. a finite number of type
/// Value or \ref INF.
virtual Value _getRowUpperBound(int i) const;
/// \e
virtual void _setObjCoeffs(ExprIterator b, ExprIterator e);
/// \e
virtual void _getObjCoeffs(InsertIterator b) const;
/// \e
virtual void _setObjCoeff(int i, Value obj_coef);
/// \e
virtual Value _getObjCoeff(int i) const;
///\e
virtual void _setSense(Sense);
///\e
virtual Sense _getSense() const;
///\e
virtual void _clear();
};
/// \brief Interface for a skeleton LP solver
///
/// This class implements an interface for a skeleton LP solver.
///\ingroup lp_group
class LpSkeleton : public SkeletonSolverBase, public LpSolver {
public:
LpSkeleton() : SkeletonSolverBase(), LpSolver() {}
protected:
///\e
virtual SolveExitStatus _solve();
///\e
virtual Value _getPrimal(int i) const;
///\e
virtual Value _getDual(int i) const;
///\e
virtual Value _getPrimalValue() const;
///\e
virtual Value _getPrimalRay(int i) const;
///\e
virtual Value _getDualRay(int i) const;
///\e
virtual ProblemType _getPrimalType() const;
///\e
virtual ProblemType _getDualType() const;
///\e
virtual VarStatus _getColStatus(int i) const;
///\e
virtual VarStatus _getRowStatus(int i) const;
///\e
virtual LpSkeleton* _newSolver() const;
///\e
virtual LpSkeleton* _cloneSolver() const;
///\e
virtual const char* _solverName() const;
};
/// \brief Interface for a skeleton MIP solver
///
/// This class implements an interface for a skeleton MIP solver.
///\ingroup lp_group
class MipSkeleton : public SkeletonSolverBase, public MipSolver {
public:
MipSkeleton() : SkeletonSolverBase(), MipSolver() {}
protected:
///\e
///\bug Wrong interface
///
virtual SolveExitStatus _solve();
///\e
///\bug Wrong interface
///
virtual Value _getSol(int i) const;
///\e
///\bug Wrong interface
///
virtual Value _getSolValue() const;
///\e
///\bug Wrong interface
///
virtual ProblemType _getType() const;
///\e
virtual MipSkeleton* _newSolver() const;
///\e
virtual MipSkeleton* _cloneSolver() const;
///\e
virtual const char* _solverName() const;
};
} //namespace lemon
#endif