diff options
author | dos-reis <gdr@axiomatics.org> | 2008-08-29 22:56:16 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-08-29 22:56:16 +0000 |
commit | c57b76ca8c51522c2f6b99999213aeb125252fca (patch) | |
tree | ca5cea1472d6b996c3a3583e10a87fa631785ae8 /src/algebra/equation1.spad.pamphlet | |
parent | fd316ce354e4eeace24d80cad6959245732217df (diff) | |
download | open-axiom-c57b76ca8c51522c2f6b99999213aeb125252fca.tar.gz |
Add more explicit imports
Diffstat (limited to 'src/algebra/equation1.spad.pamphlet')
-rw-r--r-- | src/algebra/equation1.spad.pamphlet | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/algebra/equation1.spad.pamphlet b/src/algebra/equation1.spad.pamphlet index a147e689..92c0e02d 100644 --- a/src/algebra/equation1.spad.pamphlet +++ b/src/algebra/equation1.spad.pamphlet @@ -4,13 +4,18 @@ \title{\$SPAD/src/algebra equation1.spad} \author{The Axiom Team} \maketitle + \begin{abstract} \end{abstract} -\eject \tableofcontents \eject + \section{category IEVALAB InnerEvalable} + <<category IEVALAB InnerEvalable>>= +import SetCategory +import Type +import List )abbrev category IEVALAB InnerEvalable -- FOR THE BENEFIT OF LIBAX0 GENERATION ++ Author: @@ -39,8 +44,14 @@ InnerEvalable(A:SetCategory, B:Type): Category == with eval(f:$, x:A, v:B) == eval(f, [x], [v]) @ + \section{category EVALAB Evalable} + <<category EVALAB Evalable>>= +import SetCategory +import InnerEvalable +import Equation +import List )abbrev category EVALAB Evalable ++ Author: ++ Date Created: @@ -66,7 +77,9 @@ Evalable(R:SetCategory): Category == InnerEvalable(R,R) with eval(f:$, xs:List R,vs:List R) == eval(f,[x=v for x in xs for v in vs]) @ + \section{License} + <<license>>= --Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd. --All rights reserved. |