OsiCollections.hpp
Go to the documentation of this file.
1 // Copyright (C) 2000, International Business Machines
2 // Corporation and others. All Rights Reserved.
3 #ifndef OsiCollections_H
4 #define OsiCollections_H
5 
6 #include <vector>
7 
8 //Forward declarations
9 class OsiColCut;
10 class OsiRowCut;
11 class OsiCut;
12 
13 
14 
15 /* Collection Classes */
16 
19 
20 typedef std::vector<int> OsiVectorInt;
22 typedef std::vector<double> OsiVectorDouble;
24 typedef std::vector<OsiColCut *> OsiVectorColCutPtr;
26 typedef std::vector<OsiRowCut *> OsiVectorRowCutPtr;
28 typedef std::vector<OsiCut *> OsiVectorCutPtr;
30 
31 
32 
33 #endif