Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing the internal variables prefix #918

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading