Closed chenyan2002 closed 2 years ago
The rules are currently connected with conjunction. Is it possible to support disjunction of clauses? I can use and and not to represent or, but that's not very convenient.
and
not
or
Never mind. RuleA <- B | C can be written as
RuleA <- B | C
RuleA <- B; RuleA <- C;
The rules are currently connected with conjunction. Is it possible to support disjunction of clauses? I can use
and
andnot
to representor
, but that's not very convenient.