/** * @file GaussianBayesNet.h * @brief Chordal Bayes Net, the result of eliminating a factor graph * @brief GaussianBayesNet * @author Frank Dellaert */ // \callgraph #pragma once #include #include "ConditionalGaussian.h" #include "BayesNet.h" namespace gtsam { /** Chordal Bayes Net, the result of eliminating a factor graph */ class GaussianBayesNet : public BayesNet { public: typedef boost::shared_ptr shared_ptr; /** Construct an empty net */ GaussianBayesNet() {} /** Copy Constructor */ // GaussianBayesNet(const GaussianBayesNet& cbn_in) : // keys_(cbn_in.keys_), nodes_(cbn_in.nodes_) {} /** Destructor */ virtual ~GaussianBayesNet() {} /** * optimize, i.e. return x = inv(R)*d */ boost::shared_ptr optimize() const; /** * Return (dense) upper-triangular matrix representation */ std::pair matrix() const; }; } /// namespace gtsam