Class MultipleBaseRevisionOperator<T extends Formula>

    • Method Summary

      Modifier and Type Method Description
      abstract java.util.Collection<T> revise​(java.util.Collection<T> base, java.util.Collection<T> formulas)
      Revises the first collection of formulas by the second collection of formulas.
      java.util.Collection<T> revise​(java.util.Collection<T> base, T formula)
      Revises the given collection of formulas by the given formula.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MultipleBaseRevisionOperator

        public MultipleBaseRevisionOperator()
    • Method Detail

      • revise

        public java.util.Collection<T> revise​(java.util.Collection<T> base,
                                              T formula)
        Description copied from interface: BaseRevisionOperator
        Revises the given collection of formulas by the given formula.
        Specified by:
        revise in interface BaseRevisionOperator<T extends Formula>
        Parameters:
        base - some collection of formulas.
        formula - a formula
        Returns:
        the revised collection.
      • revise

        public abstract java.util.Collection<T> revise​(java.util.Collection<T> base,
                                                       java.util.Collection<T> formulas)
        Revises the first collection of formulas by the second collection of formulas.
        Parameters:
        base - some collection of formulas.
        formulas - some formulas.
        Returns:
        the revised collection.