diff options
author | dos-reis <gdr@axiomatics.org> | 2008-04-03 04:23:42 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-04-03 04:23:42 +0000 |
commit | 001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532 (patch) | |
tree | da9e2fe5d81ff4cd7709d12e44b8c3e348b8a8e3 /src/algebra/openmath.spad.pamphlet | |
parent | a7bab9a6c2070d05e2dbd256ce455079c8ced385 (diff) | |
download | open-axiom-001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532.tar.gz |
Replace `^=' with `~='.
Diffstat (limited to 'src/algebra/openmath.spad.pamphlet')
-rw-r--r-- | src/algebra/openmath.spad.pamphlet | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/algebra/openmath.spad.pamphlet b/src/algebra/openmath.spad.pamphlet index 2ad57181..c186a2fd 100644 --- a/src/algebra/openmath.spad.pamphlet +++ b/src/algebra/openmath.spad.pamphlet @@ -150,7 +150,7 @@ ExpressionToOpenMath(R: Join(OpenMath, OrderedSet, Ring)): with outputOMArith1(dev, "power", args) outputOMDefsum(dev: OpenMathDevice, args: List Expression R): Void == - #args ^= 5 => error "Unexpected number of arguments to a defsum" + #args ~= 5 => error "Unexpected number of arguments to a defsum" OMputApp(dev) OMputSymbol(dev, "arith1", "sum") outputOMIntInterval(dev, args.4, args.5) @@ -158,7 +158,7 @@ ExpressionToOpenMath(R: Join(OpenMath, OrderedSet, Ring)): with OMputEndApp(dev) outputOMDefprod(dev: OpenMathDevice, args: List Expression R): Void == - #args ^= 5 => error "Unexpected number of arguments to a defprod" + #args ~= 5 => error "Unexpected number of arguments to a defprod" OMputApp(dev) OMputSymbol(dev, "arith1", "product") outputOMIntInterval(dev, args.4, args.5) @@ -166,7 +166,7 @@ ExpressionToOpenMath(R: Join(OpenMath, OrderedSet, Ring)): with OMputEndApp(dev) outputOMDefint(dev: OpenMathDevice, args: List Expression R): Void == - #args ^= 5 => error "Unexpected number of arguments to a defint" + #args ~= 5 => error "Unexpected number of arguments to a defint" OMputApp(dev) OMputSymbol(dev, "calculus1", "defint") outputOMInterval(dev, args.4, args.5) @@ -174,7 +174,7 @@ ExpressionToOpenMath(R: Join(OpenMath, OrderedSet, Ring)): with OMputEndApp(dev) outputOMInt(dev: OpenMathDevice, args: List Expression R): Void == - #args ^= 3 => error "Unexpected number of arguments to a defint" + #args ~= 3 => error "Unexpected number of arguments to a defint" OMputApp(dev) OMputSymbol(dev, "calculus1", "int") outputOMLambda(dev, eval(args.1, args.2, args.3), args.3) |