aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/fnla.spad.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/algebra/fnla.spad.pamphlet')
-rw-r--r--src/algebra/fnla.spad.pamphlet8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/algebra/fnla.spad.pamphlet b/src/algebra/fnla.spad.pamphlet
index 0a99b15d..36541ce6 100644
--- a/src/algebra/fnla.spad.pamphlet
+++ b/src/algebra/fnla.spad.pamphlet
@@ -223,7 +223,7 @@ FreeNilpotentLie(n:NNI,class:NNI,R: CommutativeRing): Export == Implement where
coms:VLI
coms := generate(n,class)$HB
- dimension == #coms
+ dimension() == #coms
have : (I,I) -> %
-- have(left,right) is a lookup function for basic commutators
@@ -233,7 +233,7 @@ FreeNilpotentLie(n:NNI,class:NNI,R: CommutativeRing): Export == Implement where
wt:I := coms(i).2 + coms(j).2
wt > class => 0
lo:I := 1
- hi:I := dimension
+ hi:I := dimension()
while hi-lo > 1 repeat
mid:I := (hi+lo) quo 2
if coms(mid).2 < wt then lo := mid else hi := mid
@@ -242,7 +242,7 @@ FreeNilpotentLie(n:NNI,class:NNI,R: CommutativeRing): Export == Implement where
monomial(1,hi::OSI)$FM
generator(i) ==
- i > dimension => 0$Rep
+ i > dimension() => 0$Rep
monomial(1,i::OSI)$FM
putIn : I -> %
@@ -301,6 +301,8 @@ FreeNilpotentLie(n:NNI,class:NNI,R: CommutativeRing): Export == Implement where
<<license>>=
--Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
--All rights reserved.
+--Copyright (c) 2007-2010, Gabriel Dos Reis.
+--All rights reserved.
--
--Redistribution and use in source and binary forms, with or without
--modification, are permitted provided that the following conditions are