aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/th.cc
diff options
context:
space:
mode:
authorschnetter <>2001-12-09 15:43:00 +0000
committerschnetter <>2001-12-09 15:43:00 +0000
commit3319d0c8afdfe7e599b005be6f76656019f9b833 (patch)
tree602721e707302a87bbde0a05138409129a55e97b /Carpet/CarpetLib/src/th.cc
parent2082bb5099476279b53877b27d9df295ab62ca2f (diff)
Changed handling of interpolation orders; they are now stored in the
Changed handling of interpolation orders; they are now stored in the grid functions and don't have to be passed around. Speeded up some prolongation operators. They are still slow. darcs-hash:20011209154308-07bb3-caa74a89a87c290852f2b59160ed26d9361f3cf1.gz
Diffstat (limited to 'Carpet/CarpetLib/src/th.cc')
-rw-r--r--Carpet/CarpetLib/src/th.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/Carpet/CarpetLib/src/th.cc b/Carpet/CarpetLib/src/th.cc
index 18e26de1e..1e01d4787 100644
--- a/Carpet/CarpetLib/src/th.cc
+++ b/Carpet/CarpetLib/src/th.cc
@@ -6,7 +6,7 @@
copyright : (C) 2000 by Erik Schnetter
email : schnetter@astro.psu.edu
- $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/th.cc,v 1.5 2001/06/12 14:57:00 schnetter Exp $
+ $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/th.cc,v 1.6 2001/12/09 16:43:11 schnetter Exp $
***************************************************************************/
@@ -35,7 +35,8 @@ using namespace std;
// Constructors
-th::th (dimgeneric_gh* h, const int basedelta) : h(h), delta(basedelta) {
+th::th (dimgeneric_gh* h, const int basedelta)
+ : h(h), delta(basedelta) {
h->add(this);
}