Go to the documentation of this file.00001
00002
00003
00004 #ifndef CbcChooseVariable_H
00005 #define CbcChooseVariable_H
00006
00007
00008
00009
00010
00011
00012 class CbcChooseVariable {
00013 public:
00014
00015 CbcChooseVariable () {}
00016
00017 virtual ~CbcChooseVariable() {}
00023 virtual int chosen (const CbcModel * model, int numberToLookAt,
00024 const int * which, const double * downMovement,
00025 const double * upMovement, const double * solution,
00026 int & way, double & value) = 0;
00027
00028 };
00029
00030 #endif
00031