Cbc
trunk
|
00001 /* $Id$ */ 00002 // Copyright (C) 2007, International Business Machines 00003 // Corporation and others. All Rights Reserved. 00004 // This code is licensed under the terms of the Eclipse Public License (EPL). 00005 00006 00013 #ifndef CbcSolverExpandKnapsack_H 00014 #define CbcSolverExpandKnapsack_H 00015 00016 OsiSolverInterface * 00017 expandKnapsack(CoinModel & model, int * whichColumn, int * knapsackStart, 00018 int * knapsackRow, int &numberKnapsack, 00019 CglStored & stored, int logLevel, 00020 int fixedPriority, int SOSPriority, CoinModel & tightenedModel); 00021 00022 void 00023 afterKnapsack(const CoinModel & coinModel2, const int * whichColumn, const int * knapsackStart, 00024 const int * knapsackRow, int numberKnapsack, 00025 const double * knapsackSolution, double * solution, int logLevel); 00026 00027 #endif 00028