Dip
0.92.4
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
tmp
Dip-0.92.4
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
// 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
28
class
VRP_Instance
{
29
public
:
31
UtilGraphLib
m_graphLib
;
32
int
m_numRoutes
;
33
34
private
:
37
VRP_Instance
(
const
VRP_Instance
&);
38
VRP_Instance
&
operator=
(
const
VRP_Instance
&);
39
40
public
:
42
VRP_Instance
() :
43
m_graphLib
(),
44
m_numRoutes
(0)
45
{}
46
~VRP_Instance
() {};
47
};
48
49
#endif
UtilGraphLib
Definition:
UtilGraphLib.h:33
VRP_Instance::m_numRoutes
int m_numRoutes
Definition:
VRP_Instance.h:32
VRP_Instance::VRP_Instance
VRP_Instance()
Definition:
VRP_Instance.h:42
VRP_Instance
Definition:
VRP_Instance.h:28
VRP_Instance::m_graphLib
UtilGraphLib m_graphLib
Data for an instance from VRPLIB.
Definition:
VRP_Instance.h:31
VRP_Instance::operator=
VRP_Instance & operator=(const VRP_Instance &)
Disable the default copy constructors.
VRP_Instance::~VRP_Instance
~VRP_Instance()
Definition:
VRP_Instance.h:46
Generated by
1.8.5