Slowly adding in

This commit is contained in:
Dongryeol Lee
2010-11-01 21:20:04 +00:00
parent 01509416ec
commit 79c7b94924
3 changed files with 10 additions and 8 deletions
@@ -17,11 +17,11 @@
namespace core {
namespace table {
template<TreeSpecType>
class Table: public boost::noncopyable {
public:
typedef core::tree::GeneralBinarySpaceTree < core::tree::GenMetricTree <
core::table::DensePoint > > TreeType;
typedef core::tree::GeneralBinarySpaceTree < TreeSpecType > TreeType;
public:
@@ -1,9 +1,10 @@
cmake_minimum_required(VERSION 2.8)
set(SOURCES
bounds.h
ball_bound.h
general_spacetree.h
gen_metric_tree.h
hrect_bound.h
statistic.h
)
@@ -1,11 +1,12 @@
/**
* @file tree/bounds.h
/** @file tree/ball_bound.h
*
* Bounds that are useful for binary space partitioning trees.
* @author Dongryeol Lee (dongryel@cc.gatech.edu)
*
* Bounds that are useful for binary space partitioning trees.
*/
#ifndef CORE_TREE_BOUNDS_H
#define CORE_TREE_BOUNDS_H
#ifndef CORE_TREE_BALL_BOUND_H
#define CORE_TREE_BALL_BOUND_H
#include "boost/serialization/string.hpp"
#include "core/math/math_lib.h"