util This library provides useful utils. Modules algorithm check commandline_flag io iterator logging stream string thread Requirements g++ >= 4.8 Build & Clean # Build make # Clean make clean Run All Unit Tests # Normal Run for i in `find -name "*_test"`; do $i; done # Run with Heapcheck for i in `find -name "*_test"`; do valgrind --tool=memcheck $i; done