aboutsummaryrefslogtreecommitdiff
path: root/src/maple
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-17 17:35:05 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2001-09-17 17:35:05 +0000
commit7bf303b6071cedb8c0333d9f673caf643bc74ed3 (patch)
tree59a8737c3621b32c6003d6f2ab4e0ecf1b80ed12 /src/maple
parent52a381b7be1eca93a86f4fb0b631f0286188f51f (diff)
always use ../maple/ paths to avoid where-are-we ambiguities
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@358 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/maple')
-rw-r--r--src/maple/coeffs.maple6
-rw-r--r--src/maple/coords.maple2
-rw-r--r--src/maple/util.maple2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/maple/coeffs.maple b/src/maple/coeffs.maple
index 123a494..eff3e44 100644
--- a/src/maple/coeffs.maple
+++ b/src/maple/coeffs.maple
@@ -15,9 +15,9 @@
setup_coeff_gfas :=
proc()
global
-@include "coords.minc",
-@include "coeffs.minc",
-@include "gfa.minc";
+@include "../maple/coords.minc",
+@include "../maple/coeffs.minc",
+@include "../maple/gfa.minc";
# 1st ($X^u_i$) and 2nd ($X^u_{ij}$) partial derivs
# of (r,rho,sigma) wrt (xx,yy,zz)
diff --git a/src/maple/coords.maple b/src/maple/coords.maple
index 374bb92..82fcb6f 100644
--- a/src/maple/coords.maple
+++ b/src/maple/coords.maple
@@ -13,7 +13,7 @@
setup_coords :=
proc()
global
-@include "coords.minc";
+@include "../maple/coords.minc";
N := 3; # number of spatial coordinates,
# i.e. spatial coordinate indices
diff --git a/src/maple/util.maple b/src/maple/util.maple
index 0536a6d..4d50fc3 100644
--- a/src/maple/util.maple
+++ b/src/maple/util.maple
@@ -124,7 +124,7 @@ proc(x::name, y::name)
option remember; # performance optimization
local xposn, yposn;
global
- @include "coords.minc";
+ @include "../maple/coords.minc";
if (member(x, x_all_list, 'xposn') and member(y, x_all_list, 'yposn'))
then return evalb(xposn < yposn);