Skip to content
Snippets Groups Projects
Commit 019314db authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Comment about the relation between `discrete_fun` and non-expansive functions.

parent acbaddd8
No related branches found
No related tags found
No related merge requests found
......@@ -1103,9 +1103,12 @@ Proof.
destruct n as [|n]; simpl in *; first done. apply oFunctor_ne, Hfg.
Qed.
(* Dependently-typed functions over a discrete domain *)
(* We make [discrete_fun] a definition so that we can register it as a canonical
structure. *)
(** Dependently-typed functions over a discrete domain *)
(** We make [discrete_fun] a definition so that we can register it as a
canonical structure. Note that non-dependent functions over a discrete domain,
[discrete_fun (λ _, A) B] (or [A -d> B] following the notation we introduce
below) are isomorphic to [leibnizC A -n> B]. In other words, since the domain
is discrete, we get non-expansiveness for free. *)
Definition discrete_fun {A} (B : A ofeT) := x : A, B x.
Section discrete_fun.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment