Fixed typo
parent
63e1eb29e2
commit
5cb45e7e25
|
@ -383,7 +383,7 @@ Subgraph SubgraphBuilder::operator()(const GaussianFactorGraph &gfg) const {
|
||||||
const vector<size_t> tree = buildTree(gfg, forward_ordering, weights);
|
const vector<size_t> tree = buildTree(gfg, forward_ordering, weights);
|
||||||
if (tree.size() != n - 1) {
|
if (tree.size() != n - 1) {
|
||||||
throw std::runtime_error(
|
throw std::runtime_error(
|
||||||
"SubgraphBuilder::operator() failure: tree.size() != n-1, might caused by disconnected graph");
|
"SubgraphBuilder::operator() failure: tree.size() != n-1, might be caused by disconnected graph");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Downweight the tree edges to zero.
|
// Downweight the tree edges to zero.
|
||||||
|
|
Loading…
Reference in New Issue