summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-04-18 20:29:23 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-04-18 20:29:23 +0000
commit73d338f5daabd3197650e2da5a8d5b7af1c47bcf (patch)
tree0cd007c94c9e43c47abada436bf57e8f95716719
parent78f4eea4160a3c947f1ff9d0cb50e49b9a049754 (diff)
Change to names of different timelevels, eg. now is three timelevels are used
for phi the names will be phi, phi_p, phi_p_p (previously they were phi_n, phi, phi_p). The indexing remains the same, so that phi = timelevel 2 phi_p = timelevel 1 phi_p_p = timelevel 0 git-svn-id: http://svn.cactuscode.org/flesh/trunk@2122 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--lib/sbin/GridFuncStuff.pl16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/sbin/GridFuncStuff.pl b/lib/sbin/GridFuncStuff.pl
index 4a68d659..d6e53a03 100644
--- a/lib/sbin/GridFuncStuff.pl
+++ b/lib/sbin/GridFuncStuff.pl
@@ -335,10 +335,6 @@ sub CreateFortranArgumentDeclarations
}
elsif($level == $ntimelevels)
{
- $suffix = "_n";
- }
- elsif($level == $ntimelevels-1)
- {
$suffix = "";
}
else
@@ -450,10 +446,6 @@ sub CreateCArgumentDeclarations
}
elsif($level == $ntimelevels)
{
- $suffix = "_n";
- }
- elsif($level == $ntimelevels-1)
- {
$suffix = "";
}
else
@@ -565,10 +557,6 @@ sub CreateCArgumentUses
}
elsif($level == $ntimelevels)
{
- $suffix = "_n";
- }
- elsif($level == $ntimelevels-1)
- {
$suffix = "";
}
else
@@ -642,10 +630,6 @@ sub CreateFortranArgumentList
}
elsif($level == $ntimelevels)
{
- $suffix = "_n";
- }
- elsif($level == $ntimelevels-1)
- {
$suffix = "";
}
else