From 938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427 Mon Sep 17 00:00:00 2001 From: Georgey Date: Wed, 5 Jul 2017 11:40:43 +0530 Subject: Added linux shared libraries and header files for int and ecos functions --- .../linux/include/coin/CbcHeuristicRandRound.hpp | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp (limited to 'thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp') diff --git a/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp b/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp new file mode 100644 index 0000000..dd1eedb --- /dev/null +++ b/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp @@ -0,0 +1,58 @@ +/* $Id: CbcHeuristicRandRound.hpp 1899 2013-04-09 18:12:08Z stefan $ */ +// Copyright (C) 2008, International Business Machines +// Corporation and others. All Rights Reserved. +// This code is licensed under the terms of the Eclipse Public License (EPL). + +#ifndef CbcHeuristicRandRound_H +#define CbcHeuristicRandRound_H + +#include "CbcHeuristic.hpp" +/** LocalSearch class + */ + +class CbcHeuristicRandRound : public CbcHeuristic { +public: + + // Default Constructor + CbcHeuristicRandRound (); + + /* Constructor with model - assumed before cuts + Initial version does not do Lps + */ + CbcHeuristicRandRound (CbcModel & model); + + // Copy constructor + CbcHeuristicRandRound ( const CbcHeuristicRandRound &); + + // Destructor + ~CbcHeuristicRandRound (); + + /// Clone + virtual CbcHeuristic * clone() const; + + /// Assignment operator + CbcHeuristicRandRound & operator=(const CbcHeuristicRandRound& rhs); + + /// Create C++ lines to get to current state + virtual void generateCpp( FILE * fp) ; + + /// Resets stuff if model changes + virtual void resetModel(CbcModel * model); + + /// update model (This is needed if cliques update matrix etc) + virtual void setModel(CbcModel * model); + + using CbcHeuristic::solution ; + /** returns 0 if no solution, 1 if valid solution. + Sets solution values if good, sets objective value (only if good) + needs comments + */ + virtual int solution(double & objectiveValue, + double * newSolution); + +protected: +}; + + +#endif + -- cgit