Package owl.ltl

Class MOperator

    • Constructor Detail

      • MOperator

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

      • of

        public static Formula of​(Formula leftOperand,
                                 Formula rightOperand)
        Construct a LTL-equivalent formula for (leftOperand)M(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)M(rightOperand) use the constructor.
        Parameters:
        leftOperand - The left operand of the M-operator
        rightOperand - The right operand of the M-operator
        Returns:
        a formula equivalent to (leftOperand)M(rightOperand)
      • not

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

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

        Specified by:
        not in class Formula
        Returns:
        the negation of this formula.