aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--NEWS12
-rw-r--r--src/ChangeLog4
-rw-r--r--src/algebra/exposed.lsp.pamphlet2
-rw-r--r--src/algebra/syntax.spad.pamphlet58
-rw-r--r--src/interp/i-object.boot6
6 files changed, 50 insertions, 36 deletions
diff --git a/ChangeLog b/ChangeLog
index 82b41a36..7865e85d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-02-14 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * OpenAxiom-1.1.0 has been released.
+
2008-02-09 Gabriel Dos Reis <gdr@cs.tamu.edu>
Add support for batch processing.
diff --git a/NEWS b/NEWS
index 736f621e..b905a8ff 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,12 @@
-* February 10, 2008
+* February 14, 2008
+ OpenAxiom-1.1.0 has been released.
+ Changes from previous release:
× OpenAxiom now supports batch processing, either for scripting
or for compiling Spad libraries.
+ × Many bugs fixes in both algebra and interpreter/compiler components.
+
× The interpreter now allows `case' functions defined in libraries.
Consequently, `case' no longer requires values of Union types, as
long as the arguments are of appropriate types, e.g. ones for
@@ -11,8 +15,8 @@
× OpenAxiom developers: depsys is no longer built. All files in
src/interp/ are now compiled with bootsys.
- × OpenAxiom now has a domain domain for representing the abstract
- syntax tree of Spad libraries, Spad scripts, and Boot programs.
+ × OpenAxiom has a new abstract syntax tree domain for representing Spad
+ libraries, Spad scripts, and Boot programs.
Furthermore, parsers for Spad libraries and Spad scripts are
now part of the standard algebra.
@@ -25,7 +29,7 @@
optional command line argument specifying the system root
directory and the system alegbra directory.
- × OpenAxiom now support versioning, meaning that installing newer
+ × OpenAxiom now supports versioning, meaning that installing newer
versions will not overwrite previous OpenAxiom version runtimes.
* September 21, 2007
diff --git a/src/ChangeLog b/src/ChangeLog
index 6628929f..737afebc 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2008-02-14 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * OpenAxiom-1.1.0 has been released.
+
2008-02-10 Gabriel Dos Reis <gdr@cs.tamu.edu>
* interp/sys-driver.boot (executeSpadScript): By default make
diff --git a/src/algebra/exposed.lsp.pamphlet b/src/algebra/exposed.lsp.pamphlet
index 810b8ea7..cc4000bc 100644
--- a/src/algebra/exposed.lsp.pamphlet
+++ b/src/algebra/exposed.lsp.pamphlet
@@ -88,6 +88,7 @@
(|ComplexFunctions2| . COMPLEX2)
(|ComplexRootPackage| . CMPLXRT)
(|ComplexTrigonometricManipulations| . CTRIGMNP)
+ (|ConstructorCall| . CTORCALL)
(|ContinuedFraction| . CONTFRAC)
(|Contour| . CONTOUR)
(|CoordinateSystems| . COORDSYS)
@@ -108,6 +109,7 @@
(|DrawNumericHack| . DRAWHACK)
(|DrawOption| . DROPT)
(|EigenPackage| . EP)
+ (|ElaboratedExpression| . ELABEXPR)
(|ElementaryFunctionDefiniteIntegration| . DEFINTEF)
(|ElementaryFunctionLODESolver| . LODEEF)
(|ElementaryFunctionODESolver| . ODEEF)
diff --git a/src/algebra/syntax.spad.pamphlet b/src/algebra/syntax.spad.pamphlet
index bf95adcc..365cac19 100644
--- a/src/algebra/syntax.spad.pamphlet
+++ b/src/algebra/syntax.spad.pamphlet
@@ -17,13 +17,14 @@
++ Author: Gabriel Dos Reis
++ Date Created: November 10, 2007
++ Date Last Updated: December 05, 2007
-++ Description: This domain provides a simple, general, and arguably
-++ complete representation of Spad programs as objects of a term algebra
-++ built from ground terms of type boolean, integers, foats, symbols,
-++ and strings. This domain differs from InputForm in that it represents
-++ any entity from a Spad program, not just expressions.
-++ Related Constructors: Boolean, Integer, Float, symbol, String, SExpression.
-++ See Also: SExpression, SetCategory
+++ Description: This domain provides a simple domain, general enough for
+++ building complete representation of Spad programs as objects
+++ of a term algebra built from ground terms of type integers, foats,
+++ symbols, and strings.
+++ This domain differs from InputForm in that it represents
+++ any entity in a Spad program, not just expressions.
+++ Related Constructors: Boolean, Integer, Float, Symbol, String, SExpression.
+++ See Also: SExpression, SetCategory.
++ The equality supported by this domain is structural.
++ Fixme: Provide direct support for boolean values, arbritrary
++ precision float point values.
@@ -33,13 +34,12 @@ Syntax(): Public == Private where
++ convert(s) returns the s-expression representation of a syntax.
convert: SExpression -> %
- ++ convert(s) converts an s-expression to syntax. Note, when `s'
+ ++ convert(s) converts an s-expression to Syntax. Note, when `s'
++ is not an atom, it is expected that it designates a proper list,
- ++ e.g. a sequence of cons cell ending with nil.
+ ++ e.g. a sequence of cons cells ending with nil.
coerce: Integer -> %
- ++ coerce(i) injects the integer value `i' into the Syntax domain
-
+ ++ coerce(i) injects the integer value `i' into the Syntax domain.
coerce: % -> Integer
++ coerce(s) extracts and integer value from the syntax `s'
autoCoerce: % -> Integer
@@ -49,7 +49,6 @@ Syntax(): Public == Private where
coerce: DoubleFloat -> %
++ coerce(f) injects the float value `f' into the Syntax domain
-
coerce: % -> DoubleFloat
++ coerce(s) extracts a float value from the syntax `s'.
autoCoerce: % -> DoubleFloat
@@ -59,7 +58,6 @@ Syntax(): Public == Private where
coerce: Symbol -> %
++ coerce(s) injects the symbol `s' into the Syntax domain.
-
coerce: % -> Symbol
++ coerce(s) extracts a symbol from the syntax `s'.
autoCoerce: % -> Symbol
@@ -69,7 +67,6 @@ Syntax(): Public == Private where
coerce: String -> %
++ coerce(s) injects the string value `s' into the syntax domain
-
coerce: % -> String
++ coerce(s) extracts a string value from the syntax `s'.
autoCoerce: % -> String
@@ -78,38 +75,39 @@ Syntax(): Public == Private where
++ the discretion of the compiler.
buildSyntax: (Symbol, List %) -> %
- ++ buildSyntax(op, [a1, ..., an]) builds a syntax object for op(a1,...,an).
+ ++ buildSyntax(op, [a1, ..., an]) builds a syntax object
+ ++ for op(a1,...,an).
buildSyntax: (%, List %) -> %
- ++ buildSyntax(op, [a1, ..., an]) builds a syntax object for op(a1,...,an).
+ ++ buildSyntax(op, [a1, ..., an]) builds a syntax object
+ ++ for op(a1,...,an).
nil?: % -> Boolean
++ nil?(s) is true when `s' is a syntax for the constant nil.
getOperator: % -> Union(Integer, DoubleFloat, Symbol, String, %)
++ getOperator(x) returns the operator, or tag, of the syntax `x'.
- ++ The return value is itself a syntax if `x' really is an
+ ++ The value returned is itself a syntax if `x' really is an
++ application of a function symbol as opposed to being an
++ atomic ground term.
-
getOperands: % -> List %
++ getOperands(x) returns the list of operands to the operator in `x'.
compound?: % -> Boolean
- ++ compound? x is true when not an atomic syntax.
+ ++ compound? x is true when `x' is not an atomic syntax.
_case: (%, [|Integer|]) -> Boolean
- ++ x case Integer is true is x really is an Integer
+ ++ x case Integer is true if `x' really is an Integer
_case: (%, [|DoubleFloat|]) -> Boolean
- ++ x case DoubleFloat is true is x really is a DoubleFloat
+ ++ x case DoubleFloat is true if `x' really is a DoubleFloat
_case: (%, [|Symbol|]) -> Boolean
- ++ x case Symbol is true is x really is a Symbol
+ ++ x case Symbol is true if `x' really is a Symbol
_case: (%, [|String|]) -> Boolean
- ++ x case String is true is x really is a String
+ ++ x case String is true if `x' really is a String
Private ==> SExpression add
rep(x: %): SExpression ==
@@ -264,20 +262,18 @@ ElaboratedExpression(): Public == Private where
++ getConstant(e) retrieves the constant value of `e'e.
variable?: % -> Boolean
++ variable?(e) returns true if `e' is a variable.
- getVariable: % -> Union(Symbol,"failed")
- ++ getVariable(e) retrieves the name of the variable `e'.
+ getIdentifier: % -> Union(Symbol,"failed")
+ ++ getIdentifier(e) retrieves the name of the variable `e'.
callForm?: % -> Boolean
++ callForm?(e) is true when `e' is a call expression.
getOperator: % -> Union(Symbol, "failed")
++ getOperator(e) retrieves the operator being invoked in `e',
++ when `e' is an expression.
getOperands: % -> Union(List %, "failed")
- ++ getOperands(e) returns the of operands in `e'e, assuming it
+ ++ getOperands(e) returns the list of operands in `e', assuming it
++ is a call form.
Private ==> add
- immediateDataTag := INTERN("--immediateData--")$Lisp
-
isAtomic(x: %): Boolean ==
ATOM(x)$Lisp @ Boolean
@@ -294,7 +290,7 @@ ElaboratedExpression(): Public == Private where
constant? x ==
isAtomic x and
- EQ(getUnnameIfCan(x)$Lisp, immediateDataTag)$Lisp : Boolean
+ EQ(getUnnameIfCan(x)$Lisp, _$immediateDataSymbol$Lisp)$Lisp : Boolean
getConstant x ==
constant? x => getValue(x)$Lisp @ SExpression
@@ -303,7 +299,7 @@ ElaboratedExpression(): Public == Private where
variable? x ==
isAtomic x and not constant? x
- getVariable x ==
+ getIdentifier x ==
variable? x => symbol (getUnname(x)$Lisp@SExpression)
"failed"
@
@@ -311,7 +307,7 @@ ElaboratedExpression(): Public == Private where
\section{License}
<<license>>=
---Copyright (C) 2007, Gabriel Dos Reis.
+--Copyright (C) 2007-2008, Gabriel Dos Reis.
--All rights reserved.
--
--Redistribution and use in source and binary forms, with or without
diff --git a/src/interp/i-object.boot b/src/interp/i-object.boot
index 19d27c76..07fda0f6 100644
--- a/src/interp/i-object.boot
+++ b/src/interp/i-object.boot
@@ -123,7 +123,8 @@ asTupleAsList(at) == VEC2LIST asTupleAsVector at
--% Basic Object Type Identification
-++ The VAT class for literals values.
+++ The VAT class for literal values. Also used in the
+++ algebra interface to the interpreter.
$immediateDataSymbol ==
"--immediateData--"
@@ -205,6 +206,7 @@ isLeaf x ==
atom x --may be a number or a vector
++ returns the mode of the VAT node x.
+++ Also used by the algebra interface to the interpreter.
getMode x ==
x is [op,:.] => getMode op
VECP x => x.1
@@ -219,6 +221,7 @@ putMode(x,y) ==
++ returns an interpreter object that represents the value of node x.
++ Note that an interpreter object is a pair of mode and value.
+++ Also used by the algebra interface to the interperter.
getValue x ==
VECP x => x.2
atom x =>
@@ -238,6 +241,7 @@ putValueValue(vec,val) ==
vec
++ Returns the node class of x, if possible; otherwise nil.
+++ Also used by the algebra interface to the interpreter.
getUnnameIfCan x ==
VECP x => x.0
x is [op,:.] => getUnnameIfCan op