diff options
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 |