Initial Commit. Needs refactored to run tests in parallel. Needs to avoid copying objects into both unordered_maps and reference them instead.

This commit is contained in:
David Vereb
2017-11-08 14:50:35 -05:00
commit 50d7342551
6 changed files with 12174 additions and 0 deletions

5
Makefile Normal file
View File

@@ -0,0 +1,5 @@
test: run-tests
./run-tests
run-tests: tests-main.cpp main.cpp DualLookup.h
clang++ -std=c++11 tests-main.cpp main.cpp -o run-tests