fixed warnings

This commit is contained in:
Michael Krasnyk 2017-02-21 21:54:36 +01:00 committed by Patrick Niklaus
parent f5e9c7df07
commit 748ade5fea
2 changed files with 7 additions and 7 deletions

View File

@ -16,17 +16,17 @@ namespace partition
// annotated partitions provide a mapping from every node in the graph to a consecutively
// numbered cell in each level of the multi level partition. Instead of using the bisection directly
// (which can result in a unbalanced tree structure)
// 
//
// _____o______
// / \
// / \ 
// o ____o____
// / \ / \
// / \ / \ 
// a b o _o_
// / \ / \
// / \ / \ 
// c d o o
// / \ / \
// / \ / \ 
// e f g h
// 
//
// we build a balanced structure that will result in a multi-cut on any level. We transform this
// layout into:
//

View File

@ -73,7 +73,7 @@ auto getChildrenRange(const std::vector<AnnotatedPartition::SizedID> &implicit_t
--range.second;
return range;
};
}
auto getCellSize(const std::vector<AnnotatedPartition::SizedID> &implicit_tree,
const BisectionID id_prefix,