coq-club AT inria.fr
Subject: The Coq mailing list
List archive
- From: Fabien Renaud <fafounet AT gmail.com>
- To: coq-club AT inria.fr
- Subject: [Coq-Club] Program and branching informations
- Date: Tue, 1 Oct 2013 10:06:36 +0200
Hi,
Here is a simplification of my problem:Fixpoint eq_nat (m n : nat) : bool :=
match m, n with
| 0, 0 => true
| S m', S n' => eq_nat m' n'
| _,_ => false
end.
Program Fixpoint test (n: nat) :=
match n with
| 0 => 0::nil
| S n => if (eq_nat n 3) then _ else _
end.
I cannot remove some contradictory cases.
Fabien
- [Coq-Club] Program and branching informations, Fabien Renaud, 10/01/2013
- Re: [Coq-Club] Program and branching informations, Matthieu Sozeau, 10/01/2013
- Re: [Coq-Club] Program and branching informations, Fabien Renaud, 10/02/2013
- Re: [Coq-Club] Program and branching informations, Matthieu Sozeau, 10/01/2013
Archive powered by MHonArc 2.6.18.