Dip-All
0.91.0
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
home
coin
svn-release
Dip-0.91.6
Dip
examples
VRP
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
26
class
VRP_Instance
{
27
public
:
29
UtilGraphLib
m_graphLib
;
30
int
m_numRoutes
;
31
32
private
:
35
VRP_Instance
(
const
VRP_Instance
&);
36
VRP_Instance
&
operator=
(
const
VRP_Instance
&);
37
38
public
:
40
VRP_Instance
() :
41
m_graphLib
(),
42
m_numRoutes
(0)
43
{}
44
~VRP_Instance
() {};
45
};
46
47
#endif
UtilGraphLib
Definition:
UtilGraphLib.h:33
VRP_Instance::m_numRoutes
int m_numRoutes
Definition:
VRP_Instance.h:30
VRP_Instance::VRP_Instance
VRP_Instance()
Definition:
VRP_Instance.h:40
VRP_Instance
Definition:
VRP_Instance.h:26
VRP_Instance::m_graphLib
UtilGraphLib m_graphLib
Data for an instance from VRPLIB.
Definition:
VRP_Instance.h:29
VRP_Instance::operator=
VRP_Instance & operator=(const VRP_Instance &)
Disable the default copy constructors.
VRP_Instance::~VRP_Instance
~VRP_Instance()
Definition:
VRP_Instance.h:44
Generated by
1.8.5