From 42d7160b9a2d3a85858da37f03f0947e90a5ca5f Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Sat, 1 Mar 2025 00:21:04 -0500 Subject: [PATCH] fix return type of DiscreteSearch method --- gtsam/discrete/discrete.i | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtsam/discrete/discrete.i b/gtsam/discrete/discrete.i index 6b5d747b1..74de7a922 100644 --- a/gtsam/discrete/discrete.i +++ b/gtsam/discrete/discrete.i @@ -477,9 +477,9 @@ class DiscreteSearchSolution { }; class DiscreteSearch { - static DiscreteSearch FromFactorGraph(const gtsam::DiscreteFactorGraph& factorGraph, - const gtsam::Ordering& ordering, - bool buildJunctionTree = false); + static gtsam::DiscreteSearch FromFactorGraph( + const gtsam::DiscreteFactorGraph& factorGraph, + const gtsam::Ordering& ordering, bool buildJunctionTree = false); DiscreteSearch(const gtsam::DiscreteEliminationTree& etree); DiscreteSearch(const gtsam::DiscreteJunctionTree& junctionTree);