Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Global Set and transitive Require

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Global Set and transitive Require


Chronological Thread 
  • From: Georg Neis <neis AT mpi-sws.org>
  • To: coq-club AT inria.fr
  • Subject: [Coq-Club] Global Set and transitive Require
  • Date: Wed, 5 Feb 2014 17:15:07 +0100

Hi,

I'm wondering if the following behaviour is intended.


File main.v:
------------
Global Set Printing All.
Check 1. (* prints "S O" *)
Require a.
Check 1. (* prints "1" *)

File a.v:
---------
Global Unset Printing All.
Require b.

File b.v:
---------
Global Set Printing All.


I would have expected the second check to print "S O", just like the
first did. I have played around with using Require Import/Export
instead of just Require, but the behaviour stays the same.

Best,
Georg


  • [Coq-Club] Global Set and transitive Require, Georg Neis, 02/05/2014

Archive powered by MHonArc 2.6.18.

Top of Page