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