Get rid of extra ;
parent
2da5d764f1
commit
cf44418269
|
|
@ -165,7 +165,7 @@ DiscreteSearch::DiscreteSearch(const DiscreteBayesTree& bayesTree) {
|
||||||
};
|
};
|
||||||
for (const auto& root : bayesTree.roots()) collectConditionals(root);
|
for (const auto& root : bayesTree.roots()) collectConditionals(root);
|
||||||
costToGo_ = computeCostToGo(conditionals_);
|
costToGo_ = computeCostToGo(conditionals_);
|
||||||
};
|
}
|
||||||
|
|
||||||
struct SearchNodeQueue
|
struct SearchNodeQueue
|
||||||
: public std::priority_queue<SearchNode, std::vector<SearchNode>,
|
: public std::priority_queue<SearchNode, std::vector<SearchNode>,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue