00001 /* $Id: OS.hpp 2698 2009-06-09 04:14:07Z kmartin $ */ 00002 // Last edit: 2/10/05 00003 // 00004 // Name: BB.hpp 00005 // Author: Francois Margot 00006 // Tepper School of Business 00007 // Carnegie Mellon University, Pittsburgh, PA 15213 00008 // email: fmargot@andrew.cmu.edu 00009 // Date: 12/28/03 00010 //----------------------------------------------------------------------------- 00011 // Copyright (C) 2003, Francois Margot, International Business Machines 00012 // Corporation and others. All Rights Reserved. 00013 00014 #ifndef _OS_H 00015 #define _OS_H 00016 00017 #include "OSInstance.h" 00018 #include "OSiLReader.h" 00019 00020 class CoinPackedMatrix; 00021 class BCP_buffer; 00022 00025 class OS_prob { 00026 private: 00027 OS_prob(const OS_prob&); 00028 OS_prob& operator=(const OS_prob&); 00029 00030 public: 00032 double EPSILON; 00033 OSInstance *osinstance; 00034 OSiLReader *osilreader; 00035 00036 public: 00037 00040 00041 OS_prob(); 00042 00044 ~OS_prob(); 00046 }; 00047 00048 #endif