From 3ef7797ef6fc605dfafb32523261fe1b023aeecb Mon Sep 17 00:00:00 2001 From: Samuel Mimram Date: Fri, 28 Apr 2006 14:59:16 +0000 Subject: Imported Upstream version 8.0pl3+8.1alpha --- test-suite/success/ImplicitTactic.v | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test-suite/success/ImplicitTactic.v (limited to 'test-suite/success/ImplicitTactic.v') diff --git a/test-suite/success/ImplicitTactic.v b/test-suite/success/ImplicitTactic.v new file mode 100644 index 00000000..d8fa3043 --- /dev/null +++ b/test-suite/success/ImplicitTactic.v @@ -0,0 +1,16 @@ +(* A Wiedijk-Cruz-Filipe style tactic for solving implicit arguments *) + +(* Declare a term expression with a hole *) +Parameter quo : nat -> forall n:nat, n<>0 -> nat. +Notation "x / y" := (quo x y _) : nat_scope. + +(* Declare the tactic for resolving implicit arguments still + unresolved after type-checking; it must complete the subgoal to + succeed *) +Declare Implicit Tactic assumption. + +Goal forall n d, d<>0 -> { q:nat & { r:nat | d * q + r = n }}. +intros. +(* Here, assumption is used to solve the implicit argument of quo *) +exists (n / d). + -- cgit v1.2.3