etc/settings
author mengj
Fri, 21 Oct 2005 02:57:22 +0200
changeset 17939 3925ab7b8a18
parent 17909 7540483e9228
child 17953 b74eb797b6c2
permissions -rw-r--r--
Merged theory ResAtpOracle.thy into ResAtpMethods.thy
     1 # -*- shell-script -*-
     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
    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 80"
    31 ML_DBASE=""
    32 
    33 # Standard ML of New Jersey 110 or later
    34 #SMLNJ_CYGWIN_RUNTIME=1
    35 #ML_SYSTEM=smlnj-110
    36 #ML_HOME="$ISABELLE_HOME/contrib/smlnj/bin"
    37 #ML_OPTIONS="@SMLdebug=/dev/null"
    38 #ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX")
    39 
    40 # Moscow ML 2.00 or later (experimental!)
    41 #ML_SYSTEM=mosml
    42 #ML_HOME="$ISABELLE_HOME/contrib/mosml/bin"
    43 #ML_OPTIONS=""
    44 #ML_PLATFORM=""
    45 
    46 # Poplog/PML version 15.6/2.1 (experimental!)
    47 #ML_SYSTEM=poplogml
    48 #ML_HOME="/usr/local/poplog/current-poplog/bin"
    49 #ML_OPTIONS="-noinit"
    50 #ML_SUFFIX=".psv"
    51 #ML_PLATFORM=""
    52 
    53 
    54 ###
    55 ### Compilation options (cf. isatool usedir)
    56 ###
    57 
    58 ISABELLE_USEDIR_OPTIONS="-v true -V outline=/proof,/ML"
    59 
    60 # Specifically for the HOL image
    61 HOL_USEDIR_OPTIONS=""
    62 
    63 
    64 ###
    65 ### Document preparation (cf. isatool latex/document)
    66 ###
    67 
    68 ISABELLE_LATEX="latex"
    69 ISABELLE_PDFLATEX="pdflatex"
    70 ISABELLE_BIBTEX="bibtex"
    71 ISABELLE_MAKEINDEX="makeindex"
    72 ISABELLE_DVIPS="dvips -D 600"
    73 ISABELLE_EPSTOPDF="epstopdf"
    74 
    75 # Paranoia setting for strange latex installations ...
    76 #unset TEXMF
    77 
    78 # If ISABELLE_THUMBPDF is set, isatool tries to
    79 # generate thumbnails for proof documents
    80 #type -path thumbpdf >/dev/null && ISABELLE_THUMBPDF="thumbpdf"
    81 
    82 
    83 ###
    84 ### Misc path settings
    85 ###
    86 
    87 # The place for user configuration, heap files, etc.
    88 ISABELLE_HOME_USER=~/isabelle
    89 
    90 # The places for external proversetc.
    91 #VAMPIRE_HOME=~/Vampire
    92 #E_HOME=~/E
    93 
    94 # Where to look for isabelle tools (multiple dirs separated by ':').
    95 ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools"
    96 
    97 # Location for temporary files (should be on a local file system).
    98 ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER"
    99 
   100 # Heap input locations. ML system identifier is included in lookup.
   101 ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps"
   102 
   103 # Heap output location. ML system identifier is appended automatically later on.
   104 if [ "$THIS_IS_ISABELLE_BUILD" = true ]; then
   105   #Isabelle build tells us to store heaps etc. within the distribution.
   106   ISABELLE_OUTPUT="$ISABELLE_HOME/heaps"
   107   ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info"
   108 else
   109   ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps"
   110   ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info"
   111 fi
   112 
   113 # Site settings check -- just to make it a little bit harder to copy this file verbatim!
   114 [ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \
   115   { echo >&2 "### Isabelle site settings already present!  Maybe copied etc/settings in full?"; }
   116 
   117 
   118 ###
   119 ### default logic
   120 ###
   121 
   122 ISABELLE_LOGIC=HOL
   123 
   124 
   125 ###
   126 ### Docs
   127 ###
   128 
   129 # Where to look for docs (multiple dirs separated by ':').
   130 ISABELLE_DOCS="$ISABELLE_HOME/doc"
   131 
   132 # Preferred document format
   133 ISABELLE_DOC_FORMAT=pdf
   134 
   135 # The dvi file viewer
   136 DVI_VIEWER=xdvi
   137 #DVI_VIEWER="xdvi -geometry 498x704 -expert -s 5"
   138 #DVI_VIEWER="xdvi -geometry 711x1005 -expert -s 7"
   139 #DVI_VIEWER="xdvi -geometry 500x704 -expert -s 10"
   140 #DVI_VIEWER="xdvi -geometry 555x782 -expert -s 9"
   141 
   142 # The pdf file viewer
   143 PDF_VIEWER=acroread
   144 #PDF_VIEWER=xpdf
   145 #PDF_VIEWER=open  #best for Mac users: will open in default PDF viewer
   146 
   147 # Printer spool command for PS files
   148 PRINT_COMMAND=lp
   149 
   150 
   151 ###
   152 ### Interfaces
   153 ###
   154 
   155 # Fallback: the null interface (pass-through to raw isabelle process).
   156 ISABELLE_INTERFACE=none
   157 
   158 # Proof General path, look in a variety of places
   159 ISABELLE_INTERFACE=$(choosefrom \
   160   "$ISABELLE_HOME/contrib/ProofGeneral/isar/interface" \
   161   "$ISABELLE_HOME/../ProofGeneral/isar/interface" \
   162   "/usr/local/ProofGeneral/isar/interface" \
   163   "/usr/share/ProofGeneral/isar/interface" \
   164   "/opt/ProofGeneral/isar/interface" \
   165   "/usr/share/emacs/ProofGeneral/isar/interface" \
   166   "$ISABELLE_INTERFACE")
   167 
   168 PROOFGENERAL_OPTIONS=""
   169 #PROOFGENERAL_OPTIONS="-m no_brackets -m no_type_brackets -x true -p xemacs"
   170 
   171 type -path xemacs >/dev/null || \
   172   PROOFGENERAL_OPTIONS="-p emacs $PROOFGENERAL_OPTIONS"
   173 
   174 # Automatic setup of remote fonts
   175 #XSYMBOL_INSTALLFONTS="xset fp+ tcp/isafonts.informatik.tu-muenchen.de:7200"
   176 
   177 
   178 ###
   179 ### External reasoning tools
   180 ###
   181 
   182 ## Set HOME only for tools you have installed!
   183 
   184 # HOL4 proof objects (cf. Isabelle/src/HOL/Import)
   185 HOL4_PROOFS="$PROOF_DIRS:$ISABELLE_HOME_USER/proofs:$ISABELLE_HOME/proofs"
   186 
   187 # SVC (Stanford Validity Checker)
   188 #SVC_HOME=
   189 #SVC_MACHINE=i386-redhat-linux
   190 #SVC_MACHINE=sparc-sun-solaris
   191 
   192 # Mucke (mu-calculus model checker)
   193 #MUCKE_HOME=/usr/local/bin
   194 
   195 # Einhoven model checker
   196 #EINDHOVEN_HOME=/usr/local/bin
   197 
   198 # zChaff (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML)
   199 #ZCHAFF_HOME=/usr/local/bin
   200 #ZCHAFF_VERSION=2004.5.13
   201 #ZCHAFF_VERSION=2004.11.15
   202 
   203 # BerkMin561 (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML)
   204 #BERKMIN_HOME=/usr/local/bin
   205 #BERKMIN_EXE=BerkMin561-linux
   206 #BERKMIN_EXE=BerkMin561-solaris
   207 
   208 # Jerusat 1.3 (SAT Solver, cf. Isabelle/src/HOL/Tools/sat_solver.ML)
   209 #JERUSAT_HOME=/usr/local/bin
   210 
   211 # For configuring HOL/Matrix/cplex
   212 # LP_SOLVER is the default solver. It can be changed during runtime via Cplex.set_solver.
   213 # First option: use the commercial cplex solver
   214 #LP_SOLVER=CPLEX
   215 #CPLEX_PATH=cplex
   216 # Second option: use the open source glpk solver
   217 #LP_SOLVER=GLPK
   218 #GLPK_PATH=glpsol
   219 
   220 # External provers
   221 #VAMPIRE_HOME=/usr/local/Vampire
   222 #E_HOME=/usr/local/E