Skip to Content.
Sympa Menu

coq-club - [Coq-Club] hierarchicial module names

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] hierarchicial module names


Chronological Thread 
  • From: Ian Lynagh <igloo AT earth.li>
  • To: coq-club AT inria.fr
  • Subject: [Coq-Club] hierarchicial module names
  • Date: Sun, 12 Jan 2014 14:11:19 +0000


Hi all,

Can anyone tell me how I can tell coq that a/b.v should have module name
a.b please?

i.e. I want something like this to work:



$ cat a/b.v

Axiom T : Set.


$ cat c.v

Require Import a.b.

Axiom v : T.


$ coqc a/b.v
$ coqc c.v
File "./c.v", line 2, characters 0-19:
Error: The file /tmp/r/a/b.vo contains library b and not library a.b
$


Thanks
Ian




Archive powered by MHonArc 2.6.18.

Top of Page