|
|
last edited 10 years ago by test1 |
1 2 3 | ||
Editor:
Time: 2007/11/17 21:52:08 GMT-8 |
||
Note: |
changed: - It is sometimes useful to define x as a Symbol \begin{axiom} x:Symbol integrate(x) 1 x \end{axiom} But some things can be done with Variables but cannot be done with Symbols \begin{axiom} y y == 1 y x := 1 \end{axiom} And this causes an error \begin{axiom} x == 1 x \end{axiom}
It is sometimes useful to define x as a Symbol
axiomx:Symbol
axiomintegrate(x)
(1) |
axiom1 x
(2) |
But some things can be done with Variables but cannot be done with Symbols
axiomy
(3) |
axiomy == 1
axiomy
Compiling body of rule y to compute value of type PositiveInteger
(4) |
axiomx := 1 Cannot convert right-hand side of assignment 1 to an object of the type Symbol of the left-hand side.
And this causes an error
axiomx == 1
axiomx Internal Error Interpreter code generation failed for expression1