OS.hpp
Go to the documentation of this file.
1 /* $Id: OS.hpp 2698 2009-06-09 04:14:07Z kmartin $ */
2 // Last edit: 2/10/05
3 //
4 // Name: BB.hpp
5 // Author: Francois Margot
6 // Tepper School of Business
7 // Carnegie Mellon University, Pittsburgh, PA 15213
8 // email: fmargot@andrew.cmu.edu
9 // Date: 12/28/03
10 //-----------------------------------------------------------------------------
11 // Copyright (C) 2003, Francois Margot, International Business Machines
12 // Corporation and others. All Rights Reserved.
13 
14 #ifndef _OS_H
15 #define _OS_H
16 
17 #include "OSInstance.h"
18 #include "OSiLReader.h"
19 
20 class CoinPackedMatrix;
21 class BCP_buffer;
22 
25 class OS_prob {
26 private:
27  OS_prob(const OS_prob&);
28  OS_prob& operator=(const OS_prob&);
29 
30 public:
32  double EPSILON;
35 
36 public:
37 
40  OS_prob();
42 
44  ~OS_prob();
46 };
47 
48 #endif
OSInstance * osinstance
Definition: OS.hpp:33
double EPSILON
Numerical precision for double arithmetic.
Definition: OS.hpp:32
OS_prob()
Default constructor.
Definition: OS.cpp:9
OS_prob & operator=(const OS_prob &)
Used to read an OSiL string.
Definition: OSiLReader.h:37
This class describes the message buffer used for all processes of BCP.
Definition: BCP_buffer.hpp:39
~OS_prob()
Default destructor.
Definition: OS.cpp:16
Class holding data for describing the problem.
Definition: OS.hpp:25
The in-memory representation of an OSiL instance..
Definition: OSInstance.h:2262
OSiLReader * osilreader
Definition: OS.hpp:34