summaryrefslogtreecommitdiff
path: root/src/analysis_tools.hpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2019-09-24 17:53:08 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2019-09-24 17:53:08 -0400
commitd9d3b0518ce5e0a52b9a0bae55fa5d8ca5b3c515 (patch)
tree393bd012dceb989b273da7793256518a78bdfb39 /src/analysis_tools.hpp
parentb1cc0118c49b708c7f3f4d19f37102784d218347 (diff)
downloadfuse_networks-d9d3b0518ce5e0a52b9a0bae55fa5d8ca5b3c515.tar.gz
fuse_networks-d9d3b0518ce5e0a52b9a0bae55fa5d8ca5b3c515.tar.bz2
fuse_networks-d9d3b0518ce5e0a52b9a0bae55fa5d8ca5b3c515.zip
made backbone cleaning more efficient by restricting to one-side-broken only, updated the crack finder to this new paradigm
Diffstat (limited to 'src/analysis_tools.hpp')
-rw-r--r--src/analysis_tools.hpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/analysis_tools.hpp b/src/analysis_tools.hpp
index 2a4c5d2..72d1e82 100644
--- a/src/analysis_tools.hpp
+++ b/src/analysis_tools.hpp
@@ -7,11 +7,5 @@
#include <network.hpp>
-
-template<class T>
-bool is_shorter(const std::list<T> &, const std::list<T> &);
-
-//bool trivial(boost::detail::edge_desc_impl<boost::undirected_tag,unsigned long>);
-
-//std::list<std::pair<std::array<unsigned, 2>, std::list<unsigned>>> find_minimal_crack(const Graph &, const network &);
+std::pair<std::array<unsigned, 2>, std::set<unsigned>> find_minimal_crack(const network &, unsigned i0);