match !ProofEngine.proof with
None -> assert false
| Some (uri,metasenv,bo,ty) ->
- let bo_fixed = Eta_fixing.eta_fix metasenv bo in
- let ty_fixed = Eta_fixing.eta_fix metasenv ty in
- ProofEngine.proof := Some(uri,metasenv,bo_fixed,ty_fixed);
+ ProofEngine.proof := Some(uri,metasenv,bo,ty);
if List.length metasenv = 0 then
begin
!qed_set_sensitive true ;
end ;
(*CSC: Wrong: [] is just plainly wrong *)
uri,
- (Cic.CurrentProof (UriManager.name_of_uri uri, metasenv, bo_fixed, ty_fixed, []))
+ (Cic.CurrentProof (UriManager.name_of_uri uri, metasenv, bo, ty, []))
in
ignore (output#load_proof uri currentproof)
with