Skip to content

Commit

Permalink
Address review
Browse files Browse the repository at this point in the history
  • Loading branch information
bclement-ocp committed Mar 19, 2024
1 parent 982a756 commit eb45400
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/reasoners/rel_utils.ml
Original file line number Diff line number Diff line change
Expand Up @@ -313,17 +313,17 @@ module type Domains = sig
@raise Domain.Inconsistent if the intersection is empty. *)

type t
(** The type of ephemeral domains, a mutable mapping of semantic values to
[domain]s. *)
(** Mutable mappings from semantic values to [domain]s. *)

val handle : t -> X.r -> handle
(** [handle t r] returns the [handle] associated with [r].
There is a unique handle associated with each semantic value [r] that is
created on-the-fly when [handle t r] is called for the first time.
The domain associated with the handle is initialized with [default r]
the first time it is created, and updated with [update]. *)
The domain associated with the handle is initialized from the
underlying persistent domain the first time it is accessed, and updated
with [update]. *)

val structural_propagation : t -> X.r -> unit
(** Perform structural propagation for the given representative.
Expand Down

0 comments on commit eb45400

Please sign in to comment.