Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Opacity of Logic.proj2

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Opacity of Logic.proj2


chronological Thread 
  • From: Ryan Wisnesky <ryan AT cs.harvard.edu>
  • To: coq-club AT pauillac.inria.fr
  • Subject: [Coq-Club] Opacity of Logic.proj2
  • Date: Wed, 22 Jul 2009 17:27:21 -0400
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>

Hello everyone,

In the standard library's Logic file, projection is defined as Opaque/with Qed:

Theorem proj2 : A /\ B -> B.
  Proof.
  destruct 1; trivial.
  Qed.

I'm wondering if there's a deep reason for not making this definition transparent. (I'd like to get at the underlying computational behavior of proj2 to help simplify another proof.)

Thanks,
Ryan Wisnesky





Archive powered by MhonArc 2.6.16.

Top of Page