Uses of Class
net.sf.tweety.lp.asp.syntax.ASPOperator.BinaryOperator
- 
Packages that use ASPOperator.BinaryOperator Package Description net.sf.tweety.lp.asp.parser net.sf.tweety.lp.asp.syntax  - 
- 
Uses of ASPOperator.BinaryOperator in net.sf.tweety.lp.asp.parser
Methods in net.sf.tweety.lp.asp.parser that return ASPOperator.BinaryOperator Modifier and Type Method Description ASPOperator.BinaryOperatorInstantiateVisitor. evaluateBinop(java.lang.String op) - 
Uses of ASPOperator.BinaryOperator in net.sf.tweety.lp.asp.syntax
Fields in net.sf.tweety.lp.asp.syntax declared as ASPOperator.BinaryOperator Modifier and Type Field Description private ASPOperator.BinaryOperatorAggregateAtom. leftOpA comparative operator that will be used to compare the aggregate's resulting value with the another value (leftGuard) to produce a truth value.private ASPOperator.BinaryOperatorComparativeAtom. opThe comparative operator of the atom.private ASPOperator.BinaryOperatorAggregateAtom. rightOpA comparative operator that will be used to compare the aggregate's resulting value with the another value (rightGuard) to produce a truth value.Methods in net.sf.tweety.lp.asp.syntax that return ASPOperator.BinaryOperator Modifier and Type Method Description ASPOperator.BinaryOperatorAggregateAtom. getLeftOperator()Returns the operator of the left aggregate relation.ASPOperator.BinaryOperatorComparativeAtom. getOperator()Returns the comparative operator of the atom.ASPOperator.BinaryOperatorAggregateAtom. getRightOperator()Returns the operator of the right aggregate relation.static ASPOperator.BinaryOperatorASPOperator.BinaryOperator. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ASPOperator.BinaryOperator[]ASPOperator.BinaryOperator. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.sf.tweety.lp.asp.syntax with parameters of type ASPOperator.BinaryOperator Modifier and Type Method Description voidAggregateAtom. setLeftOperator(ASPOperator.BinaryOperator op)Sets the operator of the left aggregate relation.voidAggregateAtom. setRightOperator(ASPOperator.BinaryOperator op)Sets the operator of the right aggregate relation.Constructors in net.sf.tweety.lp.asp.syntax with parameters of type ASPOperator.BinaryOperator Constructor Description AggregateAtom(ASPOperator.AggregateFunction func, java.util.List<AggregateElement> elements, ASPOperator.BinaryOperator relation, Term<?> t)Creates a new Aggregate with the given aggregate function, the given aggregate elements, and the given aggregate relation.AggregateAtom(ASPOperator.AggregateFunction func, java.util.List<AggregateElement> elements, ASPOperator.BinaryOperator relation, Term<?> t, ASPOperator.BinaryOperator relation2, Term<?> t2)Creates a new Aggregate with the given aggregate function, the given aggregate elements, and the given left and right aggregate relations.ComparativeAtom(ASPOperator.BinaryOperator op, Term<?> left, Term<?> right) 
 -