/** * @file GaussianISAM * @brief Linear ISAM only * @author Michael Kaess */ // \callgraph #pragma once #include #include namespace gtsam { typedef ISAM GaussianISAM; // recursively optimize this conditional and all subtrees void optimize(const GaussianISAM::sharedClique& clique, VectorConfig& result); // optimize the BayesTree, starting from the root VectorConfig optimize(const GaussianISAM& bayesTree); }/// namespace gtsam