-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
verify that data is valid before generating journeys
the two while loops in forward and reverse journey can create memory leak (infinite push into a vector) when invalid data is found (like reverse travel times or incorrectly rounded/floored/ceiled travel time seconds that was imported as float, see #141, needs testing though to close issue
- Loading branch information
Showing
8 changed files
with
266 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* confdefs.h */ | ||
#define PACKAGE_NAME "trRouting" | ||
#define PACKAGE_TARNAME "trrouting" | ||
#define PACKAGE_VERSION "1.0" | ||
#define PACKAGE_STRING "trRouting 1.0" | ||
#define PACKAGE_BUGREPORT "https://github.com/kaligrafy/trRouting" | ||
#define PACKAGE_URL "" | ||
#define PACKAGE "trrouting" | ||
#define VERSION "1.0" | ||
#define HAVE_STDIO_H 1 | ||
#define HAVE_STDLIB_H 1 | ||
#define HAVE_STRING_H 1 | ||
#define HAVE_INTTYPES_H 1 | ||
#define HAVE_STDINT_H 1 | ||
#define HAVE_STRINGS_H 1 | ||
#define HAVE_SYS_STAT_H 1 | ||
#define HAVE_SYS_TYPES_H 1 | ||
#define HAVE_UNISTD_H 1 | ||
#define STDC_HEADERS 1 | ||
#define HAVE_DLFCN_H 1 | ||
#define LT_OBJDIR ".libs/" | ||
#define HAVE_CXX17 1 | ||
#define HAVE_BOOST /**/ | ||
#define HAVE_BOOST_SYSTEM /**/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* confdefs.h */ | ||
#define PACKAGE_NAME "trRouting" | ||
#define PACKAGE_TARNAME "trrouting" | ||
#define PACKAGE_VERSION "1.0" | ||
#define PACKAGE_STRING "trRouting 1.0" | ||
#define PACKAGE_BUGREPORT "https://github.com/kaligrafy/trRouting" | ||
#define PACKAGE_URL "" | ||
#define PACKAGE "trrouting" | ||
#define VERSION "1.0" | ||
#define HAVE_STDIO_H 1 | ||
#define HAVE_STDLIB_H 1 | ||
#define HAVE_STRING_H 1 | ||
#define HAVE_INTTYPES_H 1 | ||
#define HAVE_STDINT_H 1 | ||
#define HAVE_STRINGS_H 1 | ||
#define HAVE_SYS_STAT_H 1 | ||
#define HAVE_SYS_TYPES_H 1 | ||
#define HAVE_UNISTD_H 1 | ||
#define STDC_HEADERS 1 | ||
#define HAVE_DLFCN_H 1 | ||
#define LT_OBJDIR ".libs/" | ||
#define HAVE_CXX17 1 | ||
#define HAVE_BOOST /**/ | ||
#define HAVE_BOOST_SYSTEM /**/ | ||
/* end confdefs.h. */ | ||
#include <boost/regex.hpp> | ||
|
||
int | ||
main (void) | ||
{ | ||
boost::regex r(); return 0; | ||
; | ||
return 0; | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.