ILattice<'AbsVal> Type
Represents an interface for a lattice used in abstract interpretation.
Instance members
| Instance member |
Description
|
Full Usage:
this.Bottom
Returns: 'AbsVal
Modifiers: abstract |
The initial abstract value representing the bottom of the lattice. Our analysis starts with this value until it reaches a fixed point.
|
Full Usage:
this.Join
Parameters:
'AbsVal
arg1 : 'AbsVal
Returns: 'AbsVal
Modifiers: abstract |
Joins two abstract values.
|
Full Usage:
this.Subsume
Parameters:
'AbsVal
arg1 : 'AbsVal
Returns: bool
Modifiers: abstract |
The subsume operator, which checks if the first lattice subsumes the second. This is to know if the analysis should stop or not.
|
B2R2