25 lines
471 B
C++
25 lines
471 B
C++
/*
|
|
* EliminationTree-inl.h
|
|
* Created on: Feb 4, 2010
|
|
* @Author: Kai Ni
|
|
* @Author: Frank Dellaert
|
|
* @brief: The elimination tree, template bodies
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include "EliminationTree.h"
|
|
|
|
namespace gtsam {
|
|
|
|
using namespace std;
|
|
|
|
/* ************************************************************************* */
|
|
template <class FG>
|
|
EliminationTree<FG>::EliminationTree(FG& fg, const Ordering& ordering) {
|
|
}
|
|
|
|
} //namespace gtsam
|