Calculates the opposite of the converse of the conditional on two or more values. It works as a chain, i.e. it returns true only if every adjacent pair (p, q) satisfies ¬q ∨ p.
const x = Chalkboard.bool.CONV(false, false, true); // Returns falseconst y = Chalkboard.bool.CONV(true, false, true); // Returns true Copy
const x = Chalkboard.bool.CONV(false, false, true); // Returns falseconst y = Chalkboard.bool.CONV(true, false, true); // Returns true
Two or more values
Calculates the opposite of the converse of the conditional on two or more values. It works as a chain, i.e. it returns true only if every adjacent pair (p, q) satisfies ¬q ∨ p.
Example