接口 AbstractState<StateT extends AbstractState<StateT>>

    • 方法详细资料

      • copy

        StateT copy()
        Creates a copy of itself.
      • equals

        boolean equals​(java.lang.Object obj)
        覆盖:
        equals 在类中 java.lang.Object
      • hashCode

        int hashCode()
        覆盖:
        hashCode 在类中 java.lang.Object
      • join

        StateT join​(StateT abstractState)
        Computes a join over itself and another abstract state abstractState (i.e., finds the least upper bound on the semilattice).
      • isLessOrEqual

        boolean isLessOrEqual​(StateT abstractState)
        Compares itself to the abstractState (i.e., compare the states on the partial order provided by the domain of the analysis).
      • isLess

        default boolean isLess​(StateT abstractStateT)
        Strictly compares itself to the abstractState.