diff options
author | dos-reis <gdr@axiomatics.org> | 2011-08-05 12:14:39 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2011-08-05 12:14:39 +0000 |
commit | 2a4baaa2a295381d6c37ec2fc7c3f7ec8fd089cf (patch) | |
tree | 60ae12b3cf30c9f7b1c017a574f271ea7ebcdb44 /src/algebra | |
parent | 83bcceb281c2de61a83142e49093a985379347db (diff) | |
download | open-axiom-2a4baaa2a295381d6c37ec2fc7c3f7ec8fd089cf.tar.gz |
* algebra/boolean.spad.pamphlet (Boolean) [test]: Remove.
Diffstat (limited to 'src/algebra')
-rw-r--r-- | src/algebra/boolean.spad.pamphlet | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/algebra/boolean.spad.pamphlet b/src/algebra/boolean.spad.pamphlet index 4112797e..a7ffceb4 100644 --- a/src/algebra/boolean.spad.pamphlet +++ b/src/algebra/boolean.spad.pamphlet @@ -477,8 +477,6 @@ Boolean(): Join(OrderedFinite, PropositionalLogic, ConvertibleTo InputForm) with ++ nand(a,b) returns the logical negation of \spad{a} and b. nor : (%, %) -> % ++ nor(a,b) returns the logical negation of \spad{a} or b. - test: % -> % - ++ test(b) returns b and is provided for compatibility with the new compiler. == add import %false: % from Foreign Builtin import %true: % from Foreign Builtin @@ -487,8 +485,6 @@ Boolean(): Join(OrderedFinite, PropositionalLogic, ConvertibleTo InputForm) with import %or: (%,%) -> % from Foreign Builtin import %not: % -> % from Foreign Builtin - test a == a - true == %true false == %false sample() == %true |