VRPH
1.0
|
00001 00002 // // 00003 // This file is part of the VRPH C/C++ package for // 00004 // solving the Vehicle Routing Problem by Chris Groer // 00005 // Code is free for use by academic researchers. // 00006 // For other purposes, contact cgroer@gmail.com // 00007 // // 00009 00010 #ifndef _VRP_CONFIG_H 00011 #define _VRP_CONFIG_H 00012 00013 #define EPS_EXE "epstopdf" 00014 // To convert .ps to .pdf files - only tested on WINDOWS and Cygwin 00015 00016 #if HAS_PLPLOT 00017 #include "plplot.h" 00018 #endif 00019 00020 // Set this to 1 if you want to have different random 00021 // seeds that incorporate time - 00022 // otherwise the solution should be repeatable 00023 #define RESEED_RNG 0 00024 00025 // Set this to 1 if you want to prevent "trivial" 00026 // moves that have no effect on the total route length 00027 #define FORBID_TINY_MOVES 1 00028 00029 00030 #endif 00031