Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/lib/hhutils.ml
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ let hint_to_string (_, _, h) =
let find_hints db secvars env evd t =
try
let open Hints in
let hdc = Hints.decompose_app_bound evd t in
let hdc = Hints.decompose_app_bound env evd t in
let hints =
if Termops.occur_existential evd t then
match Hint_db.map_eauto env evd ~secvars hdc t db with
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/hammer_main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ let rec hhterm_of (t : Constr.t) : Hh_term.hhterm =
tuple [mk_id "$App"; hhterm_of f; hhterm_of_constrarray args]
| Const (c,u) -> hhterm_of_constant c
| Proj (p,_,c) -> tuple [mk_id "$Proj";
hhterm_of_constant (Projection.constant p);
mk_id (string_of_int (Projection.arg p));
hhterm_of_bool (Projection.unfolded p);
hhterm_of c]
| Evar (evk,cl) -> raise (HammerError "Existential variables not supported.")
Expand Down
Loading