Skip to content
Snippets Groups Projects
Commit 0766d209 authored by Benjamin Cumming's avatar Benjamin Cumming
Browse files

balance() now modifies the tree!

parent 0128c26c
No related branches found
No related tags found
No related merge requests found
......@@ -221,23 +221,21 @@ TEST(cell_tree, balance) {
}
}
void test_json() {
// this test doesn't test anything yet... it just loads each cell in turn
// from a json file and creates a .dot file for it
TEST(cell_tree, json_load) {
json cell_data;
std::ifstream("cells_small.json") >> cell_data;
for(auto c : range(0,cell_data.size())) {
std::vector<int> parent_index = cell_data[c]["parent_index"];
cell_tree tree(parent_index);
std::cout << "cell " << c << " ";
//tree.balance();
//tree.to_graphviz("cell_" + std::to_string(c) + ".dot");
tree.to_graphviz("cell" + std::to_string(c) + ".dot");
//std::cout << memory::util::yellow("---------") << std::endl;
}
}
int main(int argc, char **argv) {
test_json();
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
......@@ -175,7 +175,7 @@ class tree {
return sizeof(int_type)*data_.size() + sizeof(tree);
}
tree change_root(int b) const {
tree change_root(int b) {
assert(b<num_nodes());
// no need to rebalance if the root node has been requested
......@@ -205,6 +205,10 @@ class tree {
new_tree.children_.begin(), [&p] (int i) {return p[i];}
);
// copy in new data
// this should be done with a swap, to avoid a malloc-free, however
// using std::swap gives a seg fault... todo
data_ = new_tree.data_;
//std::swap(data_, new_tree.data_);
return new_tree;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment