Dip-All  0.91.0
VRP_Instance.h
Go to the documentation of this file.
1 //===========================================================================//
2 // This file is part of the Decomp Solver Framework. //
3 // //
4 // Decomp is distributed under the Common Public License as part of the //
5 // COIN-OR repository (http://www.coin-or.org). //
6 // //
7 // Author: Matthew Galati, Lehigh University //
8 // //
9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs//
10 // All Rights Reserved. //
11 //===========================================================================//
12 
13 #ifndef VRP_INSTANCE_INCLUDED
14 #define VRP_INSTANCE_INCLUDED
15 
16 // --------------------------------------------------------------------- //
17 #include "UtilGraphLib.h"
18 
19 // --------------------------------------------------------------------- //
24 // --------------------------------------------------------------------- //
25 
27 public:
31 
32 private:
35  VRP_Instance(const VRP_Instance &);
37 
38 public:
41  m_graphLib (),
42  m_numRoutes(0)
43  {}
45 };
46 
47 #endif
UtilGraphLib m_graphLib
Data for an instance from VRPLIB.
Definition: VRP_Instance.h:29
VRP_Instance & operator=(const VRP_Instance &)
Disable the default copy constructors.