Dip  0.92.4
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 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) //
8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) //
9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) //
10 // //
11 // Copyright (C) 2002-2019, Lehigh University, Matthew Galati, and Ted Ralphs//
12 // All Rights Reserved. //
13 //===========================================================================//
14 
15 #ifndef VRP_INSTANCE_INCLUDED
16 #define VRP_INSTANCE_INCLUDED
17 
18 // --------------------------------------------------------------------- //
19 #include "UtilGraphLib.h"
20 
21 // --------------------------------------------------------------------- //
26 // --------------------------------------------------------------------- //
27 
29 public:
33 
34 private:
37  VRP_Instance(const VRP_Instance &);
39 
40 public:
43  m_graphLib (),
44  m_numRoutes(0)
45  {}
47 };
48 
49 #endif
UtilGraphLib m_graphLib
Data for an instance from VRPLIB.
Definition: VRP_Instance.h:31
VRP_Instance & operator=(const VRP_Instance &)
Disable the default copy constructors.