author | wenzelm |
Wed, 19 Oct 2005 14:51:12 +0200 | |
changeset 17909 | 7540483e9228 |
parent 17905 | 1574533861b1 |
child 17939 | 3925ab7b8a18 |
permissions | -rw-r--r-- |
10503 | 1 |
# -*- shell-script -*- |
2294 | 2 |
# $Id$ |
3 |
# |
|
2309 | 4 |
# Isabelle settings -- site defaults. |
16875 | 5 |
# |
6 |
# Important notes: |
|
7 |
# * See the system manual for explanations on Isabelle settings |
|
8 |
# * DO NOT EDIT the repository copy of this file! |
|
9 |
# * DO NOT COPY this file into your personal isabelle directory! |
|
2309 | 10 |
|
2426 | 11 |
### |
3177 | 12 |
### ML compiler settings (ESSENTIAL!) |
2426 | 13 |
### |
14 |
||
16968
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
15 |
# ML_HOME specifies the location of the actual compiler binaries. Do |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
16 |
# not invent new ML system names unless you know what you are doing. |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
17 |
# Only one of the sections below should be activated. |
14447 | 18 |
|
16968
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
19 |
# Poly/ML 4.x |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
20 |
POLY_HOME="$(type -p poly)"; [ -n "$POLY_HOME" ] && POLY_HOME="$(dirname "$POLY_HOME")" |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
21 |
ML_PLATFORM=$("$ISABELLE_HOME/lib/scripts/polyml-platform") |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
22 |
ML_HOME=$(choosefrom \ |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
23 |
"$ISABELLE_HOME/contrib/polyml/$ML_PLATFORM" \ |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
24 |
"$ISABELLE_HOME/../polyml/$ML_PLATFORM" \ |
17119 | 25 |
"/usr/local/polyml/$ML_PLATFORM" \ |
16968
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
26 |
"/usr/share/polyml/$ML_PLATFORM" \ |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
27 |
"/opt/polyml/$ML_PLATFORM" \ |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
28 |
$POLY_HOME) |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
29 |
ML_SYSTEM=$("$ISABELLE_HOME/lib/scripts/polyml-version") |
17005 | 30 |
ML_OPTIONS="-H 80" |
17048 | 31 |
ML_DBASE="" |
8345 | 32 |
|
5708 | 33 |
# Standard ML of New Jersey 110 or later |
16250 | 34 |
#SMLNJ_CYGWIN_RUNTIME=1 |
8345 | 35 |
#ML_SYSTEM=smlnj-110 |
15846 | 36 |
#ML_HOME="$ISABELLE_HOME/contrib/smlnj/bin" |
8345 | 37 |
#ML_OPTIONS="@SMLdebug=/dev/null" |
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
38 |
#ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX") |
5708 | 39 |
|
9252 | 40 |
# Moscow ML 2.00 or later (experimental!) |
41 |
#ML_SYSTEM=mosml |
|
15846 | 42 |
#ML_HOME="$ISABELLE_HOME/contrib/mosml/bin" |
17825 | 43 |
#ML_OPTIONS="" |
6413 | 44 |
#ML_PLATFORM="" |
5708 | 45 |
|
17768
72575258a561
added Poplog/PML version 15.6/2.1 (experimental!);
wenzelm
parents:
17574
diff
changeset
|
46 |
# Poplog/PML version 15.6/2.1 (experimental!) |
72575258a561
added Poplog/PML version 15.6/2.1 (experimental!);
wenzelm
parents:
17574
diff
changeset
|
47 |
#ML_SYSTEM=poplogml |
17825 | 48 |
#ML_HOME="/usr/local/poplog/current-poplog/bin" |
17768
72575258a561
added Poplog/PML version 15.6/2.1 (experimental!);
wenzelm
parents:
17574
diff
changeset
|
49 |
#ML_OPTIONS="-noinit" |
17793 | 50 |
#ML_SUFFIX=".psv" |
17825 | 51 |
#ML_PLATFORM="" |
17768
72575258a561
added Poplog/PML version 15.6/2.1 (experimental!);
wenzelm
parents:
17574
diff
changeset
|
52 |
|
2294 | 53 |
|
2426 | 54 |
### |
16186 | 55 |
### Compilation options (cf. isatool usedir) |
2435 | 56 |
### |
57 |
||
17048 | 58 |
ISABELLE_USEDIR_OPTIONS="-v true -V outline=/proof,/ML" |
11569 | 59 |
|
16186 | 60 |
# Specifically for the HOL image |
61 |
HOL_USEDIR_OPTIONS="" |
|
14044
bbd2f7b00736
set HOL_PROOF_OBJECTS in settings, not makefile (makes override in user settings possible)
kleing
parents:
13920
diff
changeset
|
62 |
|
2435 | 63 |
|
64 |
### |
|
16186 | 65 |
### Document preparation (cf. isatool latex/document) |
7773 | 66 |
### |
67 |
||
68 |
ISABELLE_LATEX="latex" |
|
69 |
ISABELLE_PDFLATEX="pdflatex" |
|
7813 | 70 |
ISABELLE_BIBTEX="bibtex" |
14344 | 71 |
ISABELLE_MAKEINDEX="makeindex" |
7773 | 72 |
ISABELLE_DVIPS="dvips -D 600" |
11800 | 73 |
ISABELLE_EPSTOPDF="epstopdf" |
7773 | 74 |
|
13920 | 75 |
# Paranoia setting for strange latex installations ... |
11062 | 76 |
#unset TEXMF |
77 |
||
13920 | 78 |
# If ISABELLE_THUMBPDF is set, isatool tries to |
79 |
# generate thumbnails for proof documents |
|
11062 | 80 |
#type -path thumbpdf >/dev/null && ISABELLE_THUMBPDF="thumbpdf" |
7864 | 81 |
|
7773 | 82 |
|
83 |
### |
|
2968 | 84 |
### Misc path settings |
2426 | 85 |
### |
2294 | 86 |
|
2426 | 87 |
# The place for user configuration, heap files, etc. |
88 |
ISABELLE_HOME_USER=~/isabelle |
|
2294 | 89 |
|
3177 | 90 |
# Where to look for isabelle tools (multiple dirs separated by ':'). |
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
91 |
ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools" |
2786 | 92 |
|
4334 | 93 |
# Location for temporary files (should be on a local file system). |
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
94 |
ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER" |
4334 | 95 |
|
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
96 |
# Heap input locations. ML system identifier is included in lookup. |
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
97 |
ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps" |
2780 | 98 |
|
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
99 |
# Heap output location. ML system identifier is appended automatically later on. |
15846 | 100 |
if [ "$THIS_IS_ISABELLE_BUILD" = true ]; then |
101 |
#Isabelle build tells us to store heaps etc. within the distribution. |
|
102 |
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps" |
|
103 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info" |
|
104 |
else |
|
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
105 |
ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps" |
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
106 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info" |
15846 | 107 |
fi |
2780 | 108 |
|
16186 | 109 |
# Site settings check -- just to make it a little bit harder to copy this file verbatim! |
9225 | 110 |
[ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \ |
111 |
{ echo >&2 "### Isabelle site settings already present! Maybe copied etc/settings in full?"; } |
|
112 |
||
13920 | 113 |
|
114 |
### |
|
16875 | 115 |
### default logic |
13920 | 116 |
### |
16186 | 117 |
|
3184 | 118 |
ISABELLE_LOGIC=HOL |
2294 | 119 |
|
2786 | 120 |
|
13920 | 121 |
### |
122 |
### Docs |
|
123 |
### |
|
2294 | 124 |
|
16186 | 125 |
# Where to look for docs (multiple dirs separated by ':'). |
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
126 |
ISABELLE_DOCS="$ISABELLE_HOME/doc" |
2345 | 127 |
|
16186 | 128 |
# Preferred document format |
15703 | 129 |
ISABELLE_DOC_FORMAT=pdf |
130 |
||
16186 | 131 |
# The dvi file viewer |
3062 | 132 |
DVI_VIEWER=xdvi |
2426 | 133 |
#DVI_VIEWER="xdvi -geometry 498x704 -expert -s 5" |
11103 | 134 |
#DVI_VIEWER="xdvi -geometry 711x1005 -expert -s 7" |
2476 | 135 |
#DVI_VIEWER="xdvi -geometry 500x704 -expert -s 10" |
3062 | 136 |
#DVI_VIEWER="xdvi -geometry 555x782 -expert -s 9" |
2345 | 137 |
|
16186 | 138 |
# The pdf file viewer |
15218 | 139 |
PDF_VIEWER=acroread |
140 |
#PDF_VIEWER=xpdf |
|
16186 | 141 |
#PDF_VIEWER=open #best for Mac users: will open in default PDF viewer |
15218 | 142 |
|
16186 | 143 |
# Printer spool command for PS files |
14933 | 144 |
PRINT_COMMAND=lp |
145 |
||
2294 | 146 |
|
2426 | 147 |
### |
148 |
### Interfaces |
|
149 |
### |
|
150 |
||
13920 | 151 |
# Fallback: the null interface (pass-through to raw isabelle process). |
11552
aca5398ccd35
ISABELLE_INTERFACE=none by default (cannot expect X11 everywhere);
wenzelm
parents:
11103
diff
changeset
|
152 |
ISABELLE_INTERFACE=none |
2294 | 153 |
|
13920 | 154 |
# Proof General path, look in a variety of places |
17574
aa9d8483cabc
PROOFGENERAL_OPTIONS: smart fall-back on plain emacs (back again);
wenzelm
parents:
17522
diff
changeset
|
155 |
ISABELLE_INTERFACE=$(choosefrom \ |
9679 | 156 |
"$ISABELLE_HOME/contrib/ProofGeneral/isar/interface" \ |
157 |
"$ISABELLE_HOME/../ProofGeneral/isar/interface" \ |
|
17119 | 158 |
"/usr/local/ProofGeneral/isar/interface" \ |
9787
fb8c5a66dbe8
more robust handling of spaces in args / file names;
wenzelm
parents:
9759
diff
changeset
|
159 |
"/usr/share/ProofGeneral/isar/interface" \ |
10070 | 160 |
"/opt/ProofGeneral/isar/interface" \ |
9956
e75e6a603e71
added /usr/share/emacs/ProofGeneral/isar/interface choice;
wenzelm
parents:
9948
diff
changeset
|
161 |
"/usr/share/emacs/ProofGeneral/isar/interface" \ |
9679 | 162 |
"$ISABELLE_INTERFACE") |
13920 | 163 |
|
5964 | 164 |
PROOFGENERAL_OPTIONS="" |
17383
3eb21fb8c2ec
no longer prefer xemacs, which fails more often than GNU emacs;
wenzelm
parents:
17119
diff
changeset
|
165 |
#PROOFGENERAL_OPTIONS="-m no_brackets -m no_type_brackets -x true -p xemacs" |
7185 | 166 |
|
17574
aa9d8483cabc
PROOFGENERAL_OPTIONS: smart fall-back on plain emacs (back again);
wenzelm
parents:
17522
diff
changeset
|
167 |
type -path xemacs >/dev/null || \ |
aa9d8483cabc
PROOFGENERAL_OPTIONS: smart fall-back on plain emacs (back again);
wenzelm
parents:
17522
diff
changeset
|
168 |
PROOFGENERAL_OPTIONS="-p emacs $PROOFGENERAL_OPTIONS" |
aa9d8483cabc
PROOFGENERAL_OPTIONS: smart fall-back on plain emacs (back again);
wenzelm
parents:
17522
diff
changeset
|
169 |
|
17383
3eb21fb8c2ec
no longer prefer xemacs, which fails more often than GNU emacs;
wenzelm
parents:
17119
diff
changeset
|
170 |
# Automatic setup of remote fonts |
9994 | 171 |
#XSYMBOL_INSTALLFONTS="xset fp+ tcp/isafonts.informatik.tu-muenchen.de:7200" |
9569 | 172 |
|
7185 | 173 |
|
174 |
### |
|
175 |
### External reasoning tools |
|
176 |
### |
|
177 |
||
7194 | 178 |
## Set HOME only for tools you have installed! |
7185 | 179 |
|
17001 | 180 |
# HOL4 proof objects (cf. Isabelle/src/HOL/Import) |
181 |
HOL4_PROOFS="$PROOF_DIRS:$ISABELLE_HOME_USER/proofs:$ISABELLE_HOME/proofs" |
|
182 |
||
7185 | 183 |
# SVC (Stanford Validity Checker) |
184 |
#SVC_HOME= |
|
185 |
#SVC_MACHINE=i386-redhat-linux |
|
186 |
#SVC_MACHINE=sparc-sun-solaris |
|
7296 | 187 |
|
188 |
# Mucke (mu-calculus model checker) |
|
189 |
#MUCKE_HOME=/usr/local/bin |
|
190 |
||
191 |
# Einhoven model checker |
|
192 |
#EINDHOVEN_HOME=/usr/local/bin |
|
14451 | 193 |
|
17522
8d25bb07d8ed
pointers to src/HOL/Tools/sat_solver.ML added in comments
webertj
parents:
17383
diff
changeset
|
194 |
# zChaff (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML) |
15284 | 195 |
#ZCHAFF_HOME=/usr/local/bin |
15331 | 196 |
#ZCHAFF_VERSION=2004.5.13 |
197 |
#ZCHAFF_VERSION=2004.11.15 |
|
14942 | 198 |
|
17522
8d25bb07d8ed
pointers to src/HOL/Tools/sat_solver.ML added in comments
webertj
parents:
17383
diff
changeset
|
199 |
# BerkMin561 (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML) |
14942 | 200 |
#BERKMIN_HOME=/usr/local/bin |
201 |
#BERKMIN_EXE=BerkMin561-linux |
|
202 |
#BERKMIN_EXE=BerkMin561-solaris |
|
14943 | 203 |
|
17522
8d25bb07d8ed
pointers to src/HOL/Tools/sat_solver.ML added in comments
webertj
parents:
17383
diff
changeset
|
204 |
# Jerusat 1.3 (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML) |
14943 | 205 |
#JERUSAT_HOME=/usr/local/bin |
16419 | 206 |
|
16873 | 207 |
# For configuring HOL/Matrix/cplex |
16966
37e34f315057
1. changed configuration variables for linear programming (Cplex_tools):
obua
parents:
16875
diff
changeset
|
208 |
# LP_SOLVER is the default solver. It can be changed during runtime via Cplex.set_solver. |
16873 | 209 |
# First option: use the commercial cplex solver |
16968
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
210 |
#LP_SOLVER=CPLEX |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
211 |
#CPLEX_PATH=cplex |
16873 | 212 |
# Second option: use the open source glpk solver |
16968
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
213 |
#LP_SOLVER=GLPK |
5cb40c8b1f10
polyml: use polyml-platform/version from Isabelle distribution;
wenzelm
parents:
16966
diff
changeset
|
214 |
#GLPK_PATH=glpsol |
17909
7540483e9228
moved VAMPIRE_HOME, E_HOME to section "External reasoning tools" -- commented out by default!
wenzelm
parents:
17905
diff
changeset
|
215 |
|
7540483e9228
moved VAMPIRE_HOME, E_HOME to section "External reasoning tools" -- commented out by default!
wenzelm
parents:
17905
diff
changeset
|
216 |
# External provers |
7540483e9228
moved VAMPIRE_HOME, E_HOME to section "External reasoning tools" -- commented out by default!
wenzelm
parents:
17905
diff
changeset
|
217 |
#VAMPIRE_HOME=/usr/local/Vampire |
7540483e9228
moved VAMPIRE_HOME, E_HOME to section "External reasoning tools" -- commented out by default!
wenzelm
parents:
17905
diff
changeset
|
218 |
#E_HOME=/usr/local/E |