etc/settings
author wenzelm
Thu, 06 Mar 2008 19:21:23 +0100
changeset 26212 225b40bf36a7
parent 26205 499f08293680
child 26908 25fb7241f32e
permissions -rw-r--r--
removed obsolete THIS_IS_ISABELLE_BUILD feature;
moved external provers further up;
no HOL4_PROOFS by default;
     1 # -*- shell-script -*- :mode=shellscript:
     2 # $Id$
     3 #
     4 # Isabelle settings -- site defaults.
     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!
    10 
    11 ###
    12 ### ML compiler settings (ESSENTIAL!)
    13 ###
    14 
    15 # ML_HOME specifies the location of the actual compiler binaries.  Do
    16 # not invent new ML system names unless you know what you are doing.
    17 # Only one of the sections below should be activated.
    18 
    19 # Poly/ML 4.x/5.x (automated settings)
    20 POLY_HOME="$(type -p poly)"; [ -n "$POLY_HOME" ] && POLY_HOME="$(dirname "$POLY_HOME")"
    21 ML_PLATFORM=$("$ISABELLE_HOME/lib/scripts/polyml-platform")
    22 ML_HOME=$(choosefrom \
    23   "$ISABELLE_HOME/contrib/polyml/$ML_PLATFORM" \
    24   "$ISABELLE_HOME/../polyml/$ML_PLATFORM" \
    25   "/usr/local/polyml/$ML_PLATFORM" \
    26   "/usr/share/polyml/$ML_PLATFORM" \
    27   "/opt/polyml/$ML_PLATFORM" \
    28   $POLY_HOME)
    29 ML_SYSTEM=$("$ISABELLE_HOME/lib/scripts/polyml-version")
    30 ML_OPTIONS="-H 200"
    31 ML_DBASE=""
    32 
    33 # Poly/ML 5.1
    34 #ML_PLATFORM=x86-linux
    35 #ML_HOME=/usr/local/polyml/x86-linux
    36 #ML_SYSTEM=polyml-5.1
    37 #ML_OPTIONS="-H 500"
    38 
    39 # Poly/ML 5.1 (64 bit)
    40 #ML_PLATFORM=x86_64-linux
    41 #ML_HOME=/usr/local/polyml/x86_64-linux
    42 #ML_SYSTEM=polyml-5.1
    43 #ML_OPTIONS="-H 1000"
    44 
    45 # Poly/ML 4.2.0
    46 #ML_PLATFORM=x86-linux
    47 #ML_HOME=/usr/local/polyml/x86-linux
    48 #ML_SYSTEM=polyml-4.2.0
    49 #ML_OPTIONS="-H 80"
    50 
    51 # Standard ML of New Jersey (slow!)
    52 #ML_SYSTEM=smlnj-110
    53 #ML_HOME="/usr/local/smlnj/bin"
    54 #ML_OPTIONS="@SMLdebug=/dev/null"
    55 #ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX")
    56 #SMLNJ_CYGWIN_RUNTIME=1
    57 
    58 # Moscow ML 2.00 (experimental!)
    59 #ML_SYSTEM=mosml
    60 #ML_HOME="/usr/local/mosml/bin"
    61 #ML_OPTIONS=""
    62 #ML_PLATFORM=""
    63 
    64 # Alice 1.4 (experimental!)
    65 #ML_SYSTEM=alice
    66 #ML_HOME="/usr/local/alice/bin"
    67 #ML_OPTIONS=""
    68 #ML_PLATFORM=""
    69 
    70 # Poplog/PML version 15.6/2.1 (experimental!)
    71 #ML_SYSTEM=poplogml
    72 #ML_HOME="/usr/local/poplog/current-poplog/bin"
    73 #ML_OPTIONS="-noinit"
    74 #ML_SUFFIX=".psv"
    75 #ML_PLATFORM=""
    76 
    77 
    78 ###
    79 ### Interactive sessions (cf. isatool tty)
    80 ###
    81 
    82 ISABELLE_LINE_EDITOR=""
    83 [ -z "$ISABELLE_LINE_EDITOR" ] && ISABELLE_LINE_EDITOR="$(type -p rlwrap)"
    84 [ -z "$ISABELLE_LINE_EDITOR" ] && ISABELLE_LINE_EDITOR="$(type -p ledit)"
    85 
    86 
    87 ###
    88 ### Batch sessions (cf. isatool usedir)
    89 ###
    90 
    91 ISABELLE_USEDIR_OPTIONS="-p 1 -v true -V outline=/proof,/ML"
    92 
    93 # Specifically for the HOL image
    94 HOL_USEDIR_OPTIONS=""
    95 #HOL_USEDIR_OPTIONS="-p 2"
    96 
    97 #Source file identification (default: full name + date stamp)
    98 ISABELLE_FILE_IDENT=""
    99 #ISABELLE_FILE_IDENT="md5"
   100 #ISABELLE_FILE_IDENT="md5sum"
   101 #ISABELLE_FILE_IDENT="sha1sum"
   102 #ISABELLE_FILE_IDENT="openssl dgst -sha1"
   103 
   104 
   105 ###
   106 ### Document preparation (cf. isatool latex/document)
   107 ###
   108 
   109 ISABELLE_LATEX="latex"
   110 ISABELLE_PDFLATEX="pdflatex"
   111 ISABELLE_BIBTEX="bibtex"
   112 ISABELLE_MAKEINDEX="makeindex"
   113 ISABELLE_DVIPS="dvips -D 600"
   114 ISABELLE_EPSTOPDF="epstopdf"
   115 
   116 # Paranoia setting for strange latex installations ...
   117 #unset TEXMF
   118 
   119 # If ISABELLE_THUMBPDF is set, isatool tries to
   120 # generate thumbnails for proof documents
   121 #type -path thumbpdf >/dev/null && ISABELLE_THUMBPDF="thumbpdf"
   122 
   123 
   124 ###
   125 ### Misc path settings
   126 ###
   127 
   128 # The place for user configuration, heap files, etc.
   129 ISABELLE_HOME_USER=~/isabelle
   130 
   131 # Where to look for isabelle tools (multiple dirs separated by ':').
   132 ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools"
   133 
   134 # Location for temporary files (should be on a local file system).
   135 ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER"
   136 
   137 # Heap input locations. ML system identifier is included in lookup.
   138 ISABELLE_PATH="$ISABELLE_HOME_USER/heaps/$ISABELLE_IDENTIFIER:$ISABELLE_HOME/heaps"
   139 
   140 # Heap output location. ML system identifier is appended automatically later on.
   141 ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps/$ISABELLE_IDENTIFIER"
   142 ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info"
   143 
   144 # Site settings check -- just to make it a little bit harder to copy this file verbatim!
   145 [ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \
   146   { echo >&2 "### Isabelle site settings already present!  Maybe copied etc/settings in full?"; }
   147 
   148 
   149 ###
   150 ### default logic
   151 ###
   152 
   153 ISABELLE_LOGIC=HOL
   154 
   155 
   156 ###
   157 ### Docs
   158 ###
   159 
   160 # Where to look for docs (multiple dirs separated by ':').
   161 ISABELLE_DOCS="$ISABELLE_HOME/doc"
   162 
   163 # Preferred document format
   164 ISABELLE_DOC_FORMAT=pdf
   165 
   166 # The dvi file viewer
   167 DVI_VIEWER=xdvi
   168 #DVI_VIEWER="xdvi -geometry 498x704 -expert -s 5"
   169 #DVI_VIEWER="xdvi -geometry 711x1005 -expert -s 7"
   170 #DVI_VIEWER="xdvi -geometry 500x704 -expert -s 10"
   171 #DVI_VIEWER="xdvi -geometry 555x782 -expert -s 9"
   172 
   173 # The pdf file viewer
   174 if [ $(uname -s) = Darwin ]; then
   175   PDF_VIEWER=open
   176 else
   177   PDF_VIEWER=xpdf
   178 fi
   179 #PDF_VIEWER=acroread
   180 #PDF_VIEWER=evince
   181 
   182 
   183 # Printer spool command for PS files
   184 PRINT_COMMAND=lp
   185 
   186 
   187 ###
   188 ### Interfaces
   189 ###
   190 
   191 # Fallback: the null interface (pass-through to raw isabelle process).
   192 ISABELLE_INTERFACE=none
   193 
   194 # Proof General path, look in a variety of places
   195 ISABELLE_INTERFACE=$(choosefrom \
   196   "$ISABELLE_HOME/contrib/ProofGeneral/isar/interface" \
   197   "$ISABELLE_HOME/../ProofGeneral/isar/interface" \
   198   "/usr/local/ProofGeneral/isar/interface" \
   199   "/usr/share/ProofGeneral/isar/interface" \
   200   "/opt/ProofGeneral/isar/interface" \
   201   "/usr/share/emacs/ProofGeneral/isar/interface" \
   202   "$ISABELLE_INTERFACE")
   203 
   204 PROOFGENERAL_OPTIONS=""
   205 #PROOFGENERAL_OPTIONS="-m no_brackets -m no_type_brackets -x true -p emacs22"
   206 
   207 # Automatic setup of remote fonts
   208 #XSYMBOL_INSTALLFONTS="xset fp+ tcp/isafonts.informatik.tu-muenchen.de:7200"
   209 
   210 
   211 ###
   212 ### External reasoning tools
   213 ###
   214 
   215 ## Set HOME only for tools you have installed!
   216 
   217 # External provers
   218 E_HOME=$(choosefrom "$ISABELLE_HOME/contrib/E/$ML_PLATFORM" "/usr/local/E" "")
   219 VAMPIRE_HOME=$(choosefrom "$ISABELLE_HOME/contrib/vampire/$ML_PLATFORM" "/usr/local/Vampire" "")
   220 SPASS_HOME=$(choosefrom "$ISABELLE_HOME/contrib/spass/$ML_PLATFORM/bin" "/usr/local/SPASS" "")
   221 
   222 # HOL4 proof objects (cf. Isabelle/src/HOL/Import)
   223 #HOL4_PROOFS="$ISABELLE_HOME_USER/proofs:$ISABELLE_HOME/proofs"
   224 
   225 # SVC (Stanford Validity Checker)
   226 #SVC_HOME=
   227 #SVC_MACHINE=i386-redhat-linux
   228 #SVC_MACHINE=sparc-sun-solaris
   229 
   230 # Mucke (mu-calculus model checker)
   231 #MUCKE_HOME=/usr/local/bin
   232 
   233 # Einhoven model checker
   234 #EINDHOVEN_HOME=/usr/local/bin
   235 
   236 # MiniSat 1.14 (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML)
   237 #MINISAT_HOME=/usr/local/bin
   238 
   239 # zChaff (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML)
   240 #ZCHAFF_HOME=/usr/local/bin
   241 #ZCHAFF_VERSION=2004.5.13
   242 #ZCHAFF_VERSION=2004.11.15
   243 
   244 # BerkMin561 (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML)
   245 #BERKMIN_HOME=/usr/local/bin
   246 #BERKMIN_EXE=BerkMin561-linux
   247 #BERKMIN_EXE=BerkMin561-solaris
   248 
   249 # Jerusat 1.3 (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML)
   250 #JERUSAT_HOME=/usr/local/bin
   251 
   252 # For configuring HOL/Matrix/cplex
   253 # LP_SOLVER is the default solver. It can be changed during runtime via Cplex.set_solver.
   254 # First option: use the commercial cplex solver
   255 #LP_SOLVER=CPLEX
   256 #CPLEX_PATH=cplex
   257 # Second option: use the open source glpk solver
   258 #LP_SOLVER=GLPK
   259 #GLPK_PATH=glpsol