fix return type of DiscreteSearch method
parent
648634f42c
commit
42d7160b9a
|
@ -477,9 +477,9 @@ class DiscreteSearchSolution {
|
||||||
};
|
};
|
||||||
|
|
||||||
class DiscreteSearch {
|
class DiscreteSearch {
|
||||||
static DiscreteSearch FromFactorGraph(const gtsam::DiscreteFactorGraph& factorGraph,
|
static gtsam::DiscreteSearch FromFactorGraph(
|
||||||
const gtsam::Ordering& ordering,
|
const gtsam::DiscreteFactorGraph& factorGraph,
|
||||||
bool buildJunctionTree = false);
|
const gtsam::Ordering& ordering, bool buildJunctionTree = false);
|
||||||
|
|
||||||
DiscreteSearch(const gtsam::DiscreteEliminationTree& etree);
|
DiscreteSearch(const gtsam::DiscreteEliminationTree& etree);
|
||||||
DiscreteSearch(const gtsam::DiscreteJunctionTree& junctionTree);
|
DiscreteSearch(const gtsam::DiscreteJunctionTree& junctionTree);
|
||||||
|
|
Loading…
Reference in New Issue