2012-09-15 06:14:37 +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 testThinBayesTree.cpp
|
|
|
|
% * @brief Test of binary tree
|
|
|
|
% * @date Sep 14, 2012
|
|
|
|
% * @author Frank Dellaert
|
|
|
|
% * @author Jean-Guillaume Durand
|
|
|
|
% */
|
|
|
|
|
|
|
|
%% Run the tests
|
|
|
|
import gtsam.*
|
|
|
|
bayesTree = thinBayesTree(3,2);
|
2021-03-11 04:58:12 +08:00
|
|
|
EQUALITY('7 = bayesTree.size', 4, bayesTree.size);
|