Export
parent
16131fe8c9
commit
41fdeb6c04
|
@ -20,6 +20,8 @@
|
||||||
|
|
||||||
namespace gtsam {
|
namespace gtsam {
|
||||||
|
|
||||||
|
using Solution = DiscreteSearch::Solution;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Represents a node in the search tree for discrete search algorithms.
|
* @brief Represents a node in the search tree for discrete search algorithms.
|
||||||
*
|
*
|
||||||
|
|
|
@ -23,6 +23,11 @@
|
||||||
|
|
||||||
namespace gtsam {
|
namespace gtsam {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DiscreteSearch: Search for the K best solutions.
|
||||||
|
*/
|
||||||
|
class GTSAM_EXPORT DiscreteSearch {
|
||||||
|
public:
|
||||||
/**
|
/**
|
||||||
* @brief A solution to a discrete search problem.
|
* @brief A solution to a discrete search problem.
|
||||||
*/
|
*/
|
||||||
|
@ -37,11 +42,6 @@ struct Solution {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* DiscreteSearch: Search for the K best solutions.
|
|
||||||
*/
|
|
||||||
class DiscreteSearch {
|
|
||||||
public:
|
|
||||||
/**
|
/**
|
||||||
* Construct from a DiscreteBayesNet and K.
|
* Construct from a DiscreteBayesNet and K.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue