Initial Commit

This commit is contained in:
Ian Roddis
2021-06-02 10:38:57 -03:00
commit e64361c864
10 changed files with 17815 additions and 0 deletions

13
tests/main.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include <iostream>
#include "daggy/DAG.hpp"
#define CATCH_CONFIG_MAIN
#include "catch.hpp"
TEST_CASE("Sanity tests", "[sanity]") {
REQUIRE(1 == 1);
}
// compile and run
// g++ -std=c++17 -o test test.cpp && ./test