| 121 | } |
| 122 | |
| 123 | void test_io( const geode::Graph& graph, const std::string& filename ) |
| 124 | { |
| 125 | geode::save_graph( graph, filename ); |
| 126 | const auto graph2 = geode::load_graph( |
| 127 | geode::OpenGeodeGraph::impl_name_static(), filename ); |
| 128 | geode_unused( graph2 ); |
| 129 | } |
| 130 | |
| 131 | void test_backward_io( const std::string& filename ) |
| 132 | { |
no test coverage detected