aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-04-04 15:30:44 -0400
committerErik Schnetter <schnetter@gmail.com>2013-04-04 15:30:44 -0400
commit7548d1e894f42140c05713d6e18854a5b1dabfdb (patch)
treea8745c5311f71a295157bb6de7237094eeb66dfc /Carpet/CarpetLib
parent21a97f9756161e7aa2407c810fd77e46fec2fc1e (diff)
CarpetLib: Remove unused/unfinished bboxtree class
Diffstat (limited to 'Carpet/CarpetLib')
-rw-r--r--Carpet/CarpetLib/src/bboxtree.cc1
-rw-r--r--Carpet/CarpetLib/src/bboxtree.hh22
-rw-r--r--Carpet/CarpetLib/src/make.code.defn1
3 files changed, 0 insertions, 24 deletions
diff --git a/Carpet/CarpetLib/src/bboxtree.cc b/Carpet/CarpetLib/src/bboxtree.cc
deleted file mode 100644
index f3181cc85..000000000
--- a/Carpet/CarpetLib/src/bboxtree.cc
+++ /dev/null
@@ -1 +0,0 @@
-#include "bboxtree.hh"
diff --git a/Carpet/CarpetLib/src/bboxtree.hh b/Carpet/CarpetLib/src/bboxtree.hh
deleted file mode 100644
index 6a062d22c..000000000
--- a/Carpet/CarpetLib/src/bboxtree.hh
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef BBOXTREE_HH
-#define BBOXTREE_HH
-
-#include <vector>
-
-using namespace std;
-
-template <typename T, int D>
-class bboxtree {
- struct node {
- T lower, upper;
- bboxtree<T,D-1>* branch;
- };
- vector<node> bs;
-};
-
-template <typename T>
-class bboxtree <T, 0> {
- // empty
-};
-
-#endif // #ifndef BBOXTREE_HH
diff --git a/Carpet/CarpetLib/src/make.code.defn b/Carpet/CarpetLib/src/make.code.defn
index aab0f5372..01a4210bb 100644
--- a/Carpet/CarpetLib/src/make.code.defn
+++ b/Carpet/CarpetLib/src/make.code.defn
@@ -5,7 +5,6 @@ SRCS = backtrace.cc \
balance.cc \
bbox.cc \
bboxset.cc \
- bboxtree.cc \
bintree.cc \
cacheinfo.cc \
commstate.cc \