Refactor edge expansion into extract phase. New temporary file is generated - '.osrm.ebg' which is used by

This commit is contained in:
Daniel Patterson
2015-10-01 12:47:29 -07:00
parent cdc4fb45f2
commit e45656e5bf
20 changed files with 458 additions and 351 deletions
-1
View File
@@ -52,7 +52,6 @@ class FingerPrint
// initialize to {6ba7b810-9dad-11d1-80b4-00c04fd430c8}
boost::uuids::uuid named_uuid;
bool has_64_bits;
};
-2
View File
@@ -35,7 +35,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <algorithm>
#include <string>
#cmakedefine01 HAS64BITS
#cmakedefine MD5PREPARE "${MD5PREPARE}"
#cmakedefine MD5RTREE "${MD5RTREE}"
#cmakedefine MD5GRAPH "${MD5GRAPH}"
@@ -68,7 +67,6 @@ FingerPrint FingerPrint::GetValid()
temp_string += fingerprint.md5_objects;
fingerprint.named_uuid = gen(temp_string);
fingerprint.has_64_bits = HAS64BITS;
return fingerprint;
}