public final class NotEquivalentFormula extends BinaryFormula
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
operator |
static int |
precedence |
| Modifier and Type | Method and Description |
|---|---|
void |
accept(ASTVisitor visitor)
Accept visitor for a visit.
|
void |
accept(ASTVisitorOld visitor)
Accept visitor for a visit.
|
static NotEquivalentFormula |
construct(Formula first,
Formula second)
Construct an exclusive disjunction.
|
java.lang.String |
getOperator()
Get textual representation of operator.
|
int |
getPrecedence()
Get precedence value of the formula operator
(higher precedence value means higher binding power)
|
getFirst, getSecondacceptChildrengetPosition, isLeftAssociative, isRightAssociative, setPositionaccept, accept, print, printCore, toString, toStringCoreequals, getClass, hashCode, notify, notifyAll, wait, wait, waitisLeftAssociative, isRightAssociativegetPosition, setPositionacceptChildren, print, printCore, toString, toStringCorepublic static final int precedence
public static final java.lang.String operator
public static NotEquivalentFormula construct(Formula first, Formula second)
first - the first (left) part.second - the right (second) part.public int getPrecedence()
getPrecedence in interface ExpressiongetPrecedence in class ExpressionBasepublic java.lang.String getOperator()
getOperator in class BinaryExpressionpublic void accept(ASTVisitorOld visitor)
accept in interface ASTaccept in class BinaryFormulavisitor - the visitor who is accepted by this node.public void accept(ASTVisitor visitor)
accept in interface ASTaccept in class BinaryFormulavisitor - the visitor who is accepted by this node.