gtsam/gtsam/symbolic/SymbolicBayesNet.cpp

32 lines
898 B
C++
Raw Normal View History

/* ----------------------------------------------------------------------------
2019-02-11 22:39:48 +08:00
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
* Atlanta, Georgia 30332-0415
* All Rights Reserved
* Authors: Frank Dellaert, et al. (see THANKS for the full author list)
* See LICENSE for the license information
* -------------------------------------------------------------------------- */
/**
* @file SymbolicBayesNet.cpp
* @date Oct 29, 2009
* @author Frank Dellaert
* @author Richard Roberts
*/
#include <gtsam/inference/FactorGraph-inst.h>
2022-01-27 07:45:19 +08:00
#include <gtsam/symbolic/SymbolicBayesNet.h>
namespace gtsam {
2022-01-27 07:45:19 +08:00
// Instantiate base class
template class FactorGraph<SymbolicConditional>;
2022-01-27 07:45:19 +08:00
/* ************************************************************************* */
bool SymbolicBayesNet::equals(const This& bn, double tol) const {
return Base::equals(bn, tol);
}
2022-01-27 07:45:19 +08:00
} // namespace gtsam