Prevent IDs in variables from being trimmed
This commit is contained in:
parent
6619941770
commit
d0ff07998f
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ let freshId =
|
|||
(string_of_int !cId))
|
||||
|
||||
let freshWithPrefix pre =
|
||||
Atom.fresh (pre ^ (freshId ()))
|
||||
Atom.fresh (pre ^ (freshId ()) ^ "_")
|
||||
let freshBlockVar () = freshWithPrefix "bl_"
|
||||
let freshVar () = freshWithPrefix "v_"
|
||||
|
||||
|
|
Loading…
Reference in a new issue