summaryrefslogtreecommitdiff
path: root/newstructure/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp
diff options
context:
space:
mode:
authorHarpreet2016-09-03 00:36:51 +0530
committerHarpreet2016-09-03 00:36:51 +0530
commita0d9443af147e949c1e6a01ac24749d12593ec5b (patch)
tree1a1955c5482ae608fd7f618b06f4ecc6a0d39a23 /newstructure/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp
parent4b64cf486f5c999fd8167758cae27839f3b50848 (diff)
downloadFOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.gz
FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.tar.bz2
FOSSEE-Optim-toolbox-development-a0d9443af147e949c1e6a01ac24749d12593ec5b.zip
cbcintlinprog added
Diffstat (limited to 'newstructure/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp')
-rw-r--r--newstructure/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/newstructure/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp b/newstructure/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp
deleted file mode 100644
index dd1eedb..0000000
--- a/newstructure/thirdparty/linux/include/coin/CbcHeuristicRandRound.hpp
+++ /dev/null
@@ -1,58 +0,0 @@
-/* $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
-