lambdapi icon indicating copy to clipboard operation
lambdapi copied to clipboard

Type error in eval tactic

Open bodeveix opened this issue 9 months ago • 0 comments

The eval tactic seems to ignore the implicit parameter annotation when reconstructing terms and thus acts as if functions were prefixed by @ while they are not. The problem seems to be solved by replacing | Symb s -> P_Iden(mk(s.sym_path,s.sym_name),false)
by | Symb s -> P_Iden(mk(s.sym_path,s.sym_name),true)

in function p_term, file tactic.ml

bodeveix avatar May 28 '25 07:05 bodeveix