]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/software/components/ng_tactics/nTactics.ml
the refiner was not checking that the resulting type
[helm.git] / helm / software / components / ng_tactics / nTactics.ml
index 0030fd75abec375ef1cc06b0ab8d0da0c7206969..152c729d0d0f50ffdcc3d28c0f85c98aa1a32bd3 100644 (file)
@@ -434,7 +434,10 @@ let letin_tac ~where ~what:(_,_,w) name =
  ]
 ;;
 
-let apply_tac (s,n,t) = exact_tac (s,n,Ast.Appl [t; Ast.Implicit `Vector]);;
+let apply_tac (s,n,t) = 
+  let t = Ast.Appl [t; Ast.Implicit `Vector] in
+  exact_tac (s,n,t)
+;;
 
 type indtyinfo = {
         rightno: int;