#include <functional>
#include <string>
Go to the source code of this file.
|
| | genesis |
| | Container namespace for all symbols of genesis in order to keep them separate when used as a library.
|
| |
| | genesis::tree |
| |
|
| bool | equal (TreeSet const &tree_set, std::function< bool(TreeNode const &, TreeNode const &)> node_comparator, std::function< bool(TreeEdge const &, TreeEdge const &)> edge_comparator) |
| | Compare whether all Trees in a TreeSet are equal using a given comparator functional. More...
|
| |
| Tree * | find_tree (TreeSet &tree_set, std::string const &name) |
| | Get the first Tree in a TreeSet that is stored with a given name, or nullptr if not found. More...
|
| |
| Tree const * | find_tree (TreeSet const &tree_set, std::string const &name) |
| | Get the first Tree in a TreeSet that is stored with a given name, or nullptr if not found. More...
|
| |
| bool | identical_topology (TreeSet const &tree_set) |
| | Return true iff all Trees in a TreeSet have an identical topology. More...
|
| |