/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* */ /* This file is part of the class library */ /* SoPlex --- the Sequential object-oriented simPlex. */ /* */ /* Copyright 1996-2022 Zuse Institute Berlin */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ /* You may obtain a copy of the License at */ /* */ /* http://www.apache.org/licenses/LICENSE-2.0 */ /* */ /* Unless required by applicable law or agreed to in writing, software */ /* distributed under the License is distributed on an "AS IS" BASIS, */ /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /* See the License for the specific language governing permissions and */ /* limitations under the License. */ /* */ /* You should have received a copy of the Apache-2.0 license */ /* along with SoPlex; see the file LICENSE. If not email to soplex@zib.de. */ /* */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /**@file spxharrisrt.h * @brief Harris pricing with shifting. */ #ifndef _SPXHARRISRT_H_ #define _SPXHARRISRT_H_ #include #include "soplex/spxdefines.h" #include "soplex/spxratiotester.h" namespace soplex { /**@brief Harris pricing with shifting. @ingroup Algo Class SPxHarrisRT is a stable implementation of a SPxRatioTester class along the lines of Harris' two phase algorithm. Additionally it uses shifting of bounds in order to avoid cycling. See SPxRatioTester for a class documentation. */ /**@todo HarrisRT leads to cycling in dcmulti.sub.lp */ template class SPxHarrisRT : public SPxRatioTester { private: //------------------------------------- /**@name Private helpers */ ///@{ /// R degenerateEps() const; /// int maxDelta( R* /*max*/, ///< max abs value in \p upd R* val, ///< initial and chosen value int num, ///< number of indices in \p idx const int* idx, ///< nonzero indices in \p upd const R* upd, ///< update VectorBase for \p vec const R* vec, ///< current vector const R* low, ///< lower bounds for \p vec const R* up, ///< upper bounds for \p vec R epsilon ///< what is 0? ) const; /// int minDelta( R* /*max*/, ///< max abs value in \p upd R* val, ///< initial and chosen value int num, ///< of indices in \p idx const int* idx, ///< nonzero indices in \p upd const R* upd, ///< update VectorBase for \p vec const R* vec, ///< current vector const R* low, ///< lower bounds for \p vec const R* up, ///< upper bounds for \p vec R epsilon ///< what is 0? ) const; ///@} public: //------------------------------------- /**@name Construction / destruction */ ///@{ /// default constructor SPxHarrisRT() : SPxRatioTester("Harris") {} /// copy constructor SPxHarrisRT(const SPxHarrisRT& old) : SPxRatioTester(old) {} /// assignment operator SPxHarrisRT& operator=(const SPxHarrisRT& rhs) { if(this != &rhs) { SPxRatioTester::operator=(rhs); } return *this; } /// destructor virtual ~SPxHarrisRT() {} /// clone function for polymorphism inline virtual SPxRatioTester* clone() const { return new SPxHarrisRT(*this); } ///@} //------------------------------------- /**@name Leave / enter */ ///@{ /// virtual int selectLeave(R& val, R, bool); /// virtual SPxId selectEnter(R& val, int, bool); ///@} }; } // namespace soplex // For the general template #include "spxharrisrt.hpp" #endif // _SPXHARRISRT_H_