Skip to Content.
Sympa Menu

coq-club - Re: [Coq-Club] operator

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

Re: [Coq-Club] operator


Chronological Thread 
  • From: AUGER Cédric <sedrikov AT gmail.com>
  • To: "Patricia Peratto" <psperatto AT adinet.com.uy>
  • Cc: "coqclub" < coq-club AT inria.fr>
  • Subject: Re: [Coq-Club] operator
  • Date: Thu, 14 Jun 2012 15:59:24 +0200

Le Thu, 14 Jun 2012 10:21:30 -0300,
"Patricia Peratto"
<psperatto AT adinet.com.uy>
a écrit :

> What means the operator <+ by example in
>
> Module Type EqLt := Typ <+ HasEq <+ HasLt.
>
> (Library Orders.)
>
> Patricia

See section 2.5.1 of coq reference manual:

It merges all the modules into one.

Module A.
Definition t := true.
End A.

Module B.
Definition f := false.
End B.

Module C.
Definition t := false.
End C.

Module Ex2 := A <+ B.
Print Ex2.

Module Ex1 := A <+ B <+ C. (* does not work*)


  • [Coq-Club] operator, Patricia Peratto, 06/14/2012
    • Re: [Coq-Club] operator, AUGER Cédric, 06/14/2012

Archive powered by MHonArc 2.6.18.

Top of Page