package frama-c
Install
Dune Dependency
Authors
-
MMichele Alberti
-
TThibaud Antignac
-
GGergö Barany
-
PPatrick Baudin
-
NNicolas Bellec
-
TThibaut Benjamin
-
AAllan Blanchard
-
LLionel Blatter
-
FFrançois Bobot
-
RRichard Bonichon
-
VVincent Botbol
-
QQuentin Bouillaguet
-
DDavid Bühler
-
ZZakaria Chihani
-
SSylvain Chiron
-
LLoïc Correnson
-
JJulien Crétin
-
PPascal Cuoq
-
ZZaynah Dargaye
-
BBasile Desloges
-
JJean-Christophe Filliâtre
-
PPhilippe Herrmann
-
MMaxime Jacquemin
-
BBenjamin Jorge
-
FFlorent Kirchner
-
AAlexander Kogtenkov
-
RRemi Lazarini
-
TTristan Le Gall
-
KKilyan Le Gallic
-
JJean-Christophe Léchenet
-
MMatthieu Lemerre
-
DDara Ly
-
DDavid Maison
-
CClaude Marché
-
AAndré Maroneze
-
TThibault Martin
-
FFonenantsoa Maurica
-
MMelody Méaulle
-
BBenjamin Monate
-
YYannick Moy
-
PPierre Nigron
-
AAnne Pacalet
-
VValentin Perrelle
-
GGuillaume Petiot
-
DDario Pinto
-
VVirgile Prevosto
-
AArmand Puccetti
-
FFélix Ridoux
-
VVirgile Robles
-
JJan Rochel
-
MMuriel Roger
-
CCécile Ruet-Cros
-
JJulien Signoles
-
NNicolas Stouls
-
KKostyantyn Vorobyov
-
BBoris Yakobowski
Maintainers
Sources
sha256=a94384f00d53791cbb4b4d83ab41607bc71962d42461f02d71116c4ff6dca567
doc/frama-c.kernel/Frama_c_kernel/Map_lattice/index.html
Module Frama_c_kernel.Map_lattice
Maps equipped with a lattice structure.
module type Value = sig ... end
module type Lattice = sig ... end
Complete semi-bounded lattice with over- and under-approximation, intersection and difference. No top value.
module type Lattice_with_cardinality = sig ... end
Complete lattice as above, plus a notion of cardinality on the values.
module type Map_Lattice = sig ... end
A map with a complete lattice structure.
module type Map_Lattice_with_cardinality = sig ... end
A notion of cardinality for maps with a complete lattice structure.
module type MapSet_Lattice = sig ... end
A lattice structure on top of maps from keys to values and sets of keys. The maps and the sets have their own lattice structure (see abstract_interp.ml for the lattice of sets). The sets are implicitly considered as maps binding all their keys to top. Any map is included in the set of its keys (and in any larger set).
module type MapSet_Lattice_with_cardinality = sig ... end
A notion of cardinality for mapset lattice.
module Make_Map_Lattice
(Key : Hptmap.Id_Datatype)
(Value : Lattice_type.Full_Lattice)
(KVMap : Hptmap_sig.S with type key = Key.t and type v = Value.t) :
sig ... end
Equips an Hptmap with a lattice structure, provided that the values have a lattice structure.
module Make_MapSet_Lattice
(Key : Hptmap.Id_Datatype)
(KSet : Lattice_type.Lattice_Set with type O.elt = Key.t)
(Value : Value)
(KVMap : Map_Lattice with type key = Key.t and type v = Value.t) :
sig ... end
Builds a lattice mixing maps and sets, provided that each one has a lattice structure.