Skip to content

Commit

Permalink
Changing the internal variables prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevendeo committed Oct 27, 2023
1 parent 6a16170 commit a3a40ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/structures/symbols.ml
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,8 @@ module MakeId(S : sig val prefix : string end) : Id = struct
let is_id = Compat.String.starts_with ~prefix:S.prefix
end

module InternalId = MakeId(struct let prefix = "!k" end)
module SkolemId = MakeId(struct let prefix = "!?__" end)
module InternalId = MakeId(struct let prefix = ".k" end)
module SkolemId = MakeId(struct let prefix = ".?__" end)
(* garder le suffixe "__" car cela influence l'ordre *)

let fresh_internal_string () = InternalId.fresh ()
Expand Down

0 comments on commit a3a40ae

Please sign in to comment.