/home/coin/SVN-release/CoinAll-1.1.0/Blis/src/BlisBranchStrategyMaxInf.h

Go to the documentation of this file.
00001 /*===========================================================================*
00002  * This file is part of the BiCePS Linear Integer Solver (BLIS).             *
00003  *                                                                           *
00004  * ALPS is distributed under the Common Public License as part of the        *
00005  * COIN-OR repository (http://www.coin-or.org).                              *
00006  *                                                                           *
00007  * Authors:                                                                  *
00008  *                                                                           *
00009  *          Yan Xu, Lehigh University                                        *
00010  *          Ted Ralphs, Lehigh University                                    *
00011  *                                                                           *
00012  * Conceptual Design:                                                        *
00013  *                                                                           *
00014  *          Yan Xu, Lehigh University                                        *
00015  *          Ted Ralphs, Lehigh University                                    *
00016  *          Laszlo Ladanyi, IBM T.J. Watson Research Center                  *
00017  *          Matthew Saltzman, Clemson University                             *
00018  *                                                                           * 
00019  *                                                                           *
00020  * Copyright (C) 2001-2007, Lehigh University, Yan Xu, and Ted Ralphs.       *
00021  * All Rights Reserved.                                                      *
00022  *===========================================================================*/
00023 
00024 #ifndef BlisBranchStrategyMaxInf_h_
00025 #define BlisBranchStrategyMaxInf_h_
00026 
00027 #include "BcpsBranchObject.h"
00028 #include "BcpsBranchStrategy.h"
00029 #include "BlisModel.h"
00030 
00032 class BlisBranchStrategyMaxInf : public BcpsBranchStrategy {
00033 
00034  private:
00035 
00037     BlisBranchStrategyMaxInf& operator=(const BlisBranchStrategyMaxInf& rhs);
00038     
00039  public:
00040     
00042     BlisBranchStrategyMaxInf() {}
00043 
00045     BlisBranchStrategyMaxInf(BlisModel *model)
00046         : BcpsBranchStrategy(model)
00047         {}
00048     
00050     virtual ~BlisBranchStrategyMaxInf() {}
00051     
00053     BlisBranchStrategyMaxInf(const BlisBranchStrategyMaxInf &);
00054     
00056     virtual BcpsBranchStrategy * clone() const {
00057         return new BlisBranchStrategyMaxInf(*this);
00058     }
00059     
00061     virtual int createCandBranchObjects(int numPassesLeft);
00062     
00068     virtual int betterBranchObject(BcpsBranchObject * thisOne,
00069                                    BcpsBranchObject * bestSoFar);
00070 };
00071 
00072 #endif

Generated on Sun Nov 14 14:06:30 2010 for Coin-All by  doxygen 1.4.7