VRPH  1.0
inc/Presert.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 _PRESERT_H
00014 #define _PRESERT_H
00015 
00016 
00017 class Presert
00018 {
00019 public:
00020     bool evaluate(class VRP *V, int i, int j, VRPMove *M);
00021     bool move(VRP *V, int u, int i);
00022 
00023 };
00024 
00025 
00026 #endif
00027 
00028