Slowly adding in
This commit is contained in:
@@ -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
|
||||
)
|
||||
|
||||
|
||||
+6
-5
@@ -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"
|
||||
Reference in New Issue
Block a user