VRPH  1.0
inc/Sweep.h
Go to the documentation of this file.
00001 
00002 //                                                        //
00003 // This file is part of the VRPH software package for     //
00004 // generating solutions to vehicle routing problems.      //
00005 // VRPH was developed by Chris Groer (cgroer@gmail.com).  //
00006 //                                                        //
00007 // (c) Copyright 2010 Chris Groer.                        //
00008 // All Rights Reserved.  VRPH is licensed under the       //
00009 // Common Public License.  See LICENSE file for details.  //
00010 //                                                        //
00012 
00013 #ifndef _SWEEP_H
00014 #define _SWEEP_H
00015 
00016 #define VRPH_UNUSED          0            // For node status use
00017 #define VRPH_ADDED           1            // For node status use
00018 #define VRPH_INTERIOR        2            // For node status use
00019 
00020 class Sweep
00021 {
00022 
00023 public:
00024     Sweep();
00025     bool Construct(class VRP *V);
00026     
00027 };
00028 
00029 #endif
00030 
00031