Package it.unive.lisa.analysis.lattices
Interface FunctionalLattice.FunctionalLift<V extends Lattice<V>>
-
- Type Parameters:
V-Latticetype of the values
- Enclosing class:
- FunctionalLattice<F extends FunctionalLattice<F,K,V>,K,V extends Lattice<V>>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface protected static interface FunctionalLattice.FunctionalLift<V extends Lattice<V>>Interface for the lift of lattice elements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vlift(V first, V second)Yields the lift offirstandsecondlattice element.
-
-
-
Method Detail
-
lift
V lift(V first, V second) throws SemanticException
Yields the lift offirstandsecondlattice element.- Parameters:
first- the first lattice elementsecond- the second lattice element- Returns:
- the lift of
firstandsecond - Throws:
SemanticException- if something goes wrong while lifting the values
-
-