package org.checkerframework.dataflow.analysis; /** * An abstract value used in the org.checkerframework.dataflow analysis. * * @author Stefan Heule * */ public interface AbstractValue> { /** * Compute the least upper bound of two stores. * *

* * Important: This method must fulfill the following contract: *

*/ V leastUpperBound(V other); }