00001 // Copyright (C) 2003, International Business Machines 00002 // Corporation and others. All Rights Reserved. 00003 00004 #include "OS.hpp" 00005 #include "CoinPackedMatrix.hpp" 00006 00007 /****************************************************************************/ 00008 OS_prob::OS_prob() : 00009 EPSILON(1e-8), 00010 osinstance( NULL), 00011 osilreader( NULL), 00012 00013 ttlcuts(0), 00014 conscount(0), 00015 initialcons(0), 00016 00017 haveBranched( false) 00018 00019 00020 00021 00022 { 00023 addtxtstr << ""; 00024 } 00025 00026 /****************************************************************************/ 00027 OS_prob::~OS_prob() 00028 { 00029 std::cout << "inside OS_prob destructor" << std::endl; 00030 00031 }