Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arbor
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
arbor-sim
arbor
Commits
0766d209
Commit
0766d209
authored
9 years ago
by
Benjamin Cumming
Browse files
Options
Downloads
Patches
Plain Diff
balance() now modifies the tree!
parent
0128c26c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
main.cpp
+3
-5
3 additions, 5 deletions
main.cpp
tree.hpp
+5
-1
5 additions, 1 deletion
tree.hpp
with
8 additions
and
6 deletions
main.cpp
+
3
−
5
View file @
0766d209
...
...
@@ -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
();
}
This diff is collapsed.
Click to expand it.
tree.hpp
+
5
−
1
View file @
0766d209
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment