diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..74f1e7d --- /dev/null +++ b/main.cpp @@ -0,0 +1,23 @@ +#include +#include +#include +#include +#include + +#include +#include +using namespace stim; +//template + +int main(int argc, char* argv[]) +{ + std::string groundTruth = argv[1]; + std::string truthCase = argv[2]; + stim::network network; + boost::tuple< ANNkd_tree*, ANNkd_tree*, stim::network, stim::network > networkKdtree; + networkKdtree = network.LoadNetworks(groundTruth, truthCase); + /*std::cout<().edges_to_str()< metrics = network.compareSkeletons(networkKdtree); + std::cout << "False postive rate is " << metrics.get< 0>() << std::endl; + std::cout << "False negative rate is " << metrics.get< 1>() << std::endl; +} -- libgit2 0.21.4