Logic¶
logic.spad line 1896 [edit on github]
‘Logic’ adds ‘not’ operation to lattices, Implements De Morgan's
laws.
- /\: (%, %) -> %
from MeetSemilattice
- \/: (%, %) -> %
from JoinSemilattice
- _|_: %
- ~: % -> %
~(x)
returns the logical complement ofx
.
- coerce: % -> OutputForm
from CoercibleTo OutputForm
- false: %
false
is a logical constant.
- latex: % -> String
from SetCategory
- T: %
- true: %
true
is a logical constant.