package coq-core
Install
Dune Dependency
Authors
Maintainers
Sources
md5=13d2793fc6413aac5168822313e4864e
sha512=ec8379df34ba6e72bcf0218c66fef248b0e4c5c436fb3f2d7dd83a2c5f349dd0874a67484fcf9c0df3e5d5937d7ae2b2a79274725595b4b0065a381f70769b42
doc/coq-core.kernel/UGraph/index.html
Module UGraph
Source
Graphs of universes.
When type_in_type
, functions adding constraints do not fail and may instead ignore inconsistent constraints.
Checking functions such as check_leq
always return true
.
Initial universes, but keeping options such as type in type from the argument.
Check equality of instances w.r.t. a universe graph
...
Merge of constraints in a universes graph. The function merge_constraints
merges a set of constraints in a given universes graph. It raises the exception UniverseInconsistency
if the constraints are not satisfiable.
Adds a universe to the graph, ensuring it is >= or > Set.
Check that the universe levels are declared. Otherwise
constraints_of_universes g
returns csts
and partition
where csts
are the non-Eq constraints and partition
is the partition of the universes into equivalence classes.
choose p g u
picks a universe verifying p
and equal to u
in g
.
constraints_for ~kept g
returns the constraints about the universes kept
in g
up to transitivity.
eg if g
is a <= b <= c
then constraints_for ~kept:{a, c} g
is a <= c
.
Known universes
check_subtype univ ctx1 ctx2
checks whether ctx2
is an instance of ctx1
.
Dumping
type node =
| Alias of Univ.Level.t
| Node of bool Univ.Level.Map.t
(*Nodes v s.t. u < v (true) or u <= v (false)
*)
Pretty-printing of universes.
val explain_universe_inconsistency :
(Sorts.QVar.t -> Pp.t) ->
(Univ.Level.t -> Pp.t) ->
univ_inconsistency ->
Pp.t