summaryrefslogtreecommitdiff
path: root/build/Bonmin/include/coin/CbcHeuristicDiveGuided.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'build/Bonmin/include/coin/CbcHeuristicDiveGuided.hpp')
-rw-r--r--build/Bonmin/include/coin/CbcHeuristicDiveGuided.hpp55
1 files changed, 0 insertions, 55 deletions
diff --git a/build/Bonmin/include/coin/CbcHeuristicDiveGuided.hpp b/build/Bonmin/include/coin/CbcHeuristicDiveGuided.hpp
deleted file mode 100644
index 2b369dc..0000000
--- a/build/Bonmin/include/coin/CbcHeuristicDiveGuided.hpp
+++ /dev/null
@@ -1,55 +0,0 @@
-/* $Id: CbcHeuristicDiveGuided.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 CbcHeuristicDiveGuided_H
-#define CbcHeuristicDiveGuided_H
-
-#include "CbcHeuristicDive.hpp"
-
-/** DiveGuided class
- */
-
-class CbcHeuristicDiveGuided : public CbcHeuristicDive {
-public:
-
- // Default Constructor
- CbcHeuristicDiveGuided ();
-
- // Constructor with model - assumed before cuts
- CbcHeuristicDiveGuided (CbcModel & model);
-
- // Copy constructor
- CbcHeuristicDiveGuided ( const CbcHeuristicDiveGuided &);
-
- // Destructor
- ~CbcHeuristicDiveGuided ();
-
- /// Clone
- virtual CbcHeuristicDiveGuided * clone() const;
-
- /// Assignment operator
- CbcHeuristicDiveGuided & operator=(const CbcHeuristicDiveGuided& rhs);
-
- /// Create C++ lines to get to current state
- virtual void generateCpp( FILE * fp) ;
-
- /// Tests if the heuristic can run
- virtual bool canHeuristicRun();
-
- /// Selects the next variable to branch on
- /** Returns true if all the fractional variables can be trivially
- rounded. Returns false, if there is at least one fractional variable
- that is not trivially roundable. In this case, the bestColumn
- returned will not be trivially roundable.
- */
- virtual bool selectVariableToBranch(OsiSolverInterface* solver,
- const double* newSolution,
- int& bestColumn,
- int& bestRound);
-
-};
-
-#endif
-