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

Make iFresh more robust in the presence of evars.

parent d7766e5d
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,10 @@ Ltac iFresh :=
|- of_envs _ =>
match goal with
| _ => eval vm_compute in (fresh_string_of_set "~" (dom stringset Δ))
(* [vm_compute fails] if [Δ] contains evars, so fall-back to [cbv] *)
| _ => eval cbv in (fresh_string_of_set "~" (dom stringset Δ))
| _ =>
(* [vm_compute fails] if [Δ] contains evars, so fall-back to [cbv] *)
let Hs := eval cbv in (dom stringset Δ) in
eval vm_compute in (fresh_string_of_set "~" Hs)
end
| _ => constr:"~"
end.
......
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