Package owl.ltl

Class ROperator

    • Constructor Detail

      • ROperator

        public ROperator​(Formula leftOperand,
                         Formula rightOperand)
    • Method Detail

      • of

        public static Formula of​(Formula leftOperand,
                                 Formula rightOperand)
        Construct a LTL-equivalent formula for (leftOperand)R(rightOperand). The method examines the operands and might choose to construct a simpler formula. However, the size of the syntax tree is not increased. In order to syntactically construct (leftOperand)R(rightOperand) use the constructor.
        Parameters:
        leftOperand - The left operand of the R-operator
        rightOperand - The right operand of the R-operator
        Returns:
        a formula equivalent to (leftOperand)R(rightOperand)
      • accept

        public <R> R accept​(Visitor<R> v)
      • accept

        public <A,B> A accept​(BinaryVisitor<B,A> v,
                              B parameter)
      • isPureEventual

        public boolean isPureEventual()
      • isPureUniversal

        public boolean isPureUniversal()
      • isSuspendable

        public boolean isSuspendable()
      • not

        public Formula not()
        Description copied from interface: Formula
        Syntactically negate this formula.

        If this formula is in NNF, the returned negation will also be in NNF.

        Returns:
        the negation of this formula.
      • unfoldTemporalStep

        public Formula unfoldTemporalStep​(BitSet valuation)
        Description copied from interface: Formula
        Short-cut operation to avoid intermediate construction of formula ASTs.