aboutsummaryrefslogtreecommitdiffstats
path: root/src/Tactics.v
diff options
context:
space:
mode:
authorlduboisd <lduboisd@inria.fr>2022-04-08 17:11:50 +0200
committerlduboisd <lduboisd@inria.fr>2022-04-08 17:11:50 +0200
commit59be27207e4527661d219991728a1372335ceede (patch)
tree0523c9497df43f329d772e9cf859e6f492bf204c /src/Tactics.v
parent15ab2869ab700d21c59c5a272721b5bba1d2b8ee (diff)
downloadsmtcoq-59be27207e4527661d219991728a1372335ceede.tar.gz
smtcoq-59be27207e4527661d219991728a1372335ceede.zip
use of anomaly for timeout
Diffstat (limited to 'src/Tactics.v')
-rw-r--r--src/Tactics.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Tactics.v b/src/Tactics.v
index e41b0f5..c44af14 100644
--- a/src/Tactics.v
+++ b/src/Tactics.v
@@ -29,7 +29,7 @@ Ltac get_hyps_acc acc k :=
| id _ => fail
| _ =>
change P with (id P) in H;
- match acc with
+ lazymatch acc with
| Some ?t => get_hyps_acc (Some (H, t)) k
| None => get_hyps_acc (Some H) k
end