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 // 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 // numbered cell in each level of the multi level partition. Instead of using the bisection directly
// (which can result in a unbalanced tree structure) // (which can result in a unbalanced tree structure)
//  //
// _____o______ // _____o______
// / \ // / \ 
// o ____o____ // o ____o____
// / \ / \ // / \ / \ 
// a b o _o_ // a b o _o_
// / \ / \ // / \ / \ 
// c d o o // c d o o
// / \ / \ // / \ / \ 
// e f g h // e f g h
//  //
// we build a balanced structure that will result in a multi-cut on any level. We transform this // we build a balanced structure that will result in a multi-cut on any level. We transform this
// layout into: // layout into:
// //

View File

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