From 1843d0c103c0823639a0dc1a53fa015a2f0cbb82 Mon Sep 17 00:00:00 2001 From: Jan-Oliver Kaiser <janno@mpi-sws.org> Date: Wed, 28 Feb 2018 18:11:10 +0100 Subject: [PATCH] Remove leftover comments. --- theories/lang/tactics.v | 3 --- 1 file changed, 3 deletions(-) diff --git a/theories/lang/tactics.v b/theories/lang/tactics.v index f628f502..c7b85fe7 100644 --- a/theories/lang/tactics.v +++ b/theories/lang/tactics.v @@ -172,7 +172,6 @@ Ltac solve_closed := match goal with | |- Closed ?X ?e => let e' := W.of_expr e in change (Closed X (W.to_expr e')); - (* apply W.is_closed_correct; vm_compute; exact I *) apply W.is_closed_correct; exact (I <: W.is_closed X e') end. Hint Extern 0 (Closed _ _) => solve_closed : typeclass_instances. @@ -190,7 +189,6 @@ Ltac solve_to_val := | |- is_Some (to_val ?e) => let e' := W.of_expr e in change (is_Some (to_val (W.to_expr e'))); apply W.to_val_is_Some, (bool_decide_unpack _); - (* vm_compute; exact I *) match goal with [|-Is_true (@bool_decide ?P ?dec)] => exact (I <: Is_true (@bool_decide P dec)) end @@ -202,7 +200,6 @@ Ltac solve_atomic := match goal with | |- Atomic ?s ?e => let e' := W.of_expr e in change (Atomic s (W.to_expr e')); - (* apply W.is_atomic_correct; vm_compute; exact I *) apply W.is_atomic_correct; exact (I <: W.is_atomic e') end. Hint Extern 0 (Atomic _ _) => solve_atomic : typeclass_instances. -- GitLab