File: README

package info (click to toggle)
proofgeneral 3.5-4.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 8,120 kB
  • ctags: 3,972
  • sloc: lisp: 34,872; makefile: 452; sh: 323; perl: 205; ansic: 43
file content (62 lines) | stat: -rw-r--r-- 1,998 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Coq Proof General

Originally written by  Healfdene Goguen.
Later contributions by Patrick Loiseleur, Pierre Courtieu, 
		       David Aspinall

Status:		supported
Maintainer:	Pierre Courtieu
Coq version:	6.3, 6.3.1, 7.x, 8.x
Coq homepage:	http://pauillac.inria.fr/coq/assis-eng.html

===========================================================================

Coq Proof General has experimental multiple file handling for 6.3
versions.  It does not have support for proof by pointing.

There is support for X Symbol, but using character sequences rather
than a special token language.  See notes below for syntax.

There is a tags program, coqtags.

===========================================================================

Installation notes:

Check the values of coq-tags and coq-prog-name in coq.el to see that
they correspond to the paths for coqtop and the library on your system.

Install coqtags in a standard place or add <proof-home>/coq to your PATH.
NB: You may need to change the path to perl at the top of the file.

Generate a TAGS file for the library by running
	coqtags `find . -name \*.v -print`
in the root directory of the library, $COQTOP/theories.  


===========================================================================

Grammar for x-symbols:

  Symbols include sequences naming Greek letters ("Lambda", "lambda", etc),
  connectives /\, \/, etc.  See the X-Symbol char table for details.

  a symbol is encoded only if 
   - preceded by _ or some space or some symbol
  **and**
   - followed by _ or some space or some symbol

  Grammar for sub/superscript: 

   - a double _ introduces a subscript that ends at the first space
   - a double ^ introduces a superscript that ends at the first space
  
   - a _ followed by { introduces a subscript
     expression that ends at the first }
   - a ^ followed by { introduces a superscript
     expression that ends at the first }


========================================

README,v 8.0 2004/04/17 23:39:58 da Exp