etc/settings
author wenzelm
Mon, 19 Sep 2011 22:13:51 +0200
changeset 45872 d88f7fc62a40
parent 45832 5b8d39b1360e
child 46018 c23029f6357f
permissions -rw-r--r--
double clicks switch to document node buffer;
     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 default (automated settings)
    19 ML_PLATFORM="$ISABELLE_PLATFORM"
    20 ML_HOME="$(choosefrom \
    21   "$ISABELLE_HOME/contrib/polyml/$ML_PLATFORM" \
    22   "$ISABELLE_HOME/../polyml/$ML_PLATFORM" \
    23   "/usr/local/polyml/$ML_PLATFORM" \
    24   "/usr/share/polyml/$ML_PLATFORM" \
    25   "/opt/polyml/$ML_PLATFORM" \
    26   "")"
    27 ML_SYSTEM=$("$ISABELLE_HOME/lib/scripts/polyml-version")
    28 ML_OPTIONS="-H 200"
    29 ML_SOURCES="$ML_HOME/../src"
    30 
    31 # Poly/ML 32 bit (manual settings)
    32 #ML_SYSTEM=polyml-5.4.0
    33 #ML_PLATFORM="$ISABELLE_PLATFORM"
    34 #ML_HOME="$ISABELLE_HOME/contrib/$ML_SYSTEM/$ML_PLATFORM"
    35 #ML_OPTIONS="-H 500"
    36 #ML_SOURCES="$ML_HOME/../src"
    37 
    38 # Poly/ML 64 bit (manual settings)
    39 #ML_SYSTEM=polyml-5.4.0
    40 #ML_PLATFORM="${ISABELLE_PLATFORM64:-$ISABELLE_PLATFORM}"
    41 #ML_HOME="$ISABELLE_HOME/contrib/$ML_SYSTEM/$ML_PLATFORM"
    42 #ML_OPTIONS="-H 1000"
    43 #ML_SOURCES="$ML_HOME/../src"
    44 
    45 # Standard ML of New Jersey (slow!)
    46 #ML_SYSTEM=smlnj-110
    47 #ML_HOME="/usr/local/smlnj/bin"
    48 #ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=256"
    49 #ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX")
    50 #SMLNJ_CYGWIN_RUNTIME=1
    51 
    52 
    53 ###
    54 ### JVM components (Scala or Java)
    55 ###
    56 
    57 if [ -n "$JAVA_HOME" ]; then
    58   ISABELLE_JAVA="$JAVA_HOME/bin/java"
    59 else
    60   ISABELLE_JAVA="java"
    61 fi
    62 
    63 
    64 ###
    65 ### Interactive sessions (cf. isabelle tty)
    66 ###
    67 
    68 ISABELLE_LINE_EDITOR=""
    69 [ -z "$ISABELLE_LINE_EDITOR" ] && ISABELLE_LINE_EDITOR="$(type -p rlwrap)"
    70 [ -z "$ISABELLE_LINE_EDITOR" ] && ISABELLE_LINE_EDITOR="$(type -p ledit)"
    71 
    72 
    73 ###
    74 ### Batch sessions (cf. isabelle usedir)
    75 ###
    76 
    77 ISABELLE_USEDIR_OPTIONS="-M max -p 1 -q 2 -v true -V outline=/proof,/ML"
    78 
    79 
    80 ###
    81 ### Document preparation (cf. isabelle latex/document)
    82 ###
    83 
    84 ISABELLE_LATEX="latex"
    85 ISABELLE_PDFLATEX="pdflatex"
    86 ISABELLE_BIBTEX="bibtex"
    87 ISABELLE_MAKEINDEX="makeindex"
    88 ISABELLE_DVIPS="dvips -D 600"
    89 ISABELLE_EPSTOPDF="epstopdf"
    90 
    91 # Paranoia setting for strange latex installations ...
    92 #unset TEXMF
    93 
    94 
    95 ###
    96 ### Misc path settings
    97 ###
    98 
    99 # The place for user configuration, heap files, etc.
   100 ISABELLE_HOME_USER="$HOME/.isabelle/$ISABELLE_IDENTIFIER"
   101 
   102 # Where to look for isabelle tools (multiple dirs separated by ':').
   103 ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools"
   104 
   105 # Location for temporary files (should be on a local file system).
   106 ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER"
   107 
   108 # Heap input locations. ML system identifier is included in lookup.
   109 ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps"
   110 
   111 # Heap output location. ML system identifier is appended automatically later on.
   112 ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps"
   113 ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info"
   114 
   115 # Site settings check -- just to make it a little bit harder to copy this file verbatim!
   116 [ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \
   117   { echo >&2 "### Isabelle site settings already present!  Maybe copied etc/settings in full?"; }
   118 ISABELLE_SITE_SETTINGS_PRESENT=true
   119 
   120 
   121 ###
   122 ### Default logic
   123 ###
   124 
   125 ISABELLE_LOGIC=HOL
   126 
   127 
   128 ###
   129 ### Docs
   130 ###
   131 
   132 # Where to look for docs (multiple dirs separated by ':').
   133 ISABELLE_DOCS="$ISABELLE_HOME/doc"
   134 
   135 # Preferred document format
   136 ISABELLE_DOC_FORMAT=pdf
   137 
   138 # The dvi file viewer
   139 DVI_VIEWER=xdvi
   140 #DVI_VIEWER="xdvi -geometry 498x704 -expert -s 5"
   141 #DVI_VIEWER="xdvi -geometry 711x1005 -expert -s 7"
   142 #DVI_VIEWER="xdvi -geometry 500x704 -expert -s 10"
   143 #DVI_VIEWER="xdvi -geometry 555x782 -expert -s 9"
   144 
   145 # The pdf file viewer
   146 case "$ISABELLE_PLATFORM" in
   147   *-darwin)
   148     PDF_VIEWER="open -W -n"
   149     ;;
   150   *)
   151     PDF_VIEWER=xpdf
   152     ;;
   153 esac
   154 #PDF_VIEWER=acroread
   155 #PDF_VIEWER=evince
   156 
   157 
   158 # Printer spool command for PS files
   159 PRINT_COMMAND=lp
   160 
   161 
   162 ###
   163 ### Proof General / Emacs
   164 ###
   165 
   166 # Proof General home, look in a variety of places
   167 PROOFGENERAL_HOME="$(choosefrom \
   168   "$ISABELLE_HOME/contrib/ProofGeneral" \
   169   "$ISABELLE_HOME/../ProofGeneral" \
   170   "/usr/local/ProofGeneral" \
   171   "/usr/share/ProofGeneral" \
   172   "/opt/ProofGeneral" \
   173   "")"
   174 
   175 PROOFGENERAL_OPTIONS=""
   176 #PROOFGENERAL_OPTIONS="-m no_brackets -m no_type_brackets"
   177 
   178 # Automatic setup of remote fonts
   179 #XSYMBOL_INSTALLFONTS="xset fp+ tcp/isafonts.informatik.tu-muenchen.de:7200"
   180 XSYMBOL_INSTALLFONTS=""
   181 
   182 
   183 ###
   184 ### Rendering information
   185 ###
   186 
   187 ISABELLE_FONTS="$ISABELLE_HOME/lib/fonts/IsabelleText.ttf:$ISABELLE_HOME/lib/fonts/IsabelleTextBold.ttf"
   188 ISABELLE_SYMBOLS="$ISABELLE_HOME/etc/symbols:$ISABELLE_HOME_USER/etc/symbols"
   189 
   190 
   191 ###
   192 ### Old-style settings for some external tools
   193 ###
   194 
   195 ## Set HOME only for tools you have installed!
   196 
   197 # HOL4 proof objects (cf. src/HOL/Import)
   198 #HOL4_PROOFS="$ISABELLE_HOME_USER/proofs:$ISABELLE_HOME/proofs"
   199 
   200 # SVC (Stanford Validity Checker)
   201 #SVC_HOME=
   202 #SVC_MACHINE=i386-redhat-linux
   203 #SVC_MACHINE=sparc-sun-solaris
   204 
   205 # MiniSat 1.14 (SAT Solver, cf. src/HOL/Tools/sat_solver.ML)
   206 #MINISAT_HOME=/usr/local/bin
   207 
   208 # zChaff (SAT Solver, cf. src/HOL/Tools/sat_solver.ML)
   209 #ZCHAFF_HOME=/usr/local/bin
   210 
   211 # BerkMin561 (SAT Solver, cf. src/HOL/Tools/sat_solver.ML)
   212 #BERKMIN_HOME=/usr/local/bin
   213 #BERKMIN_EXE=BerkMin561-linux
   214 #BERKMIN_EXE=BerkMin561-solaris
   215 
   216 # Jerusat 1.3 (SAT Solver, cf. src/HOL/Tools/sat_solver.ML)
   217 #JERUSAT_HOME=/usr/local/bin
   218 
   219 # For configuring HOL/Matrix/cplex
   220 # LP_SOLVER is the default solver. It can be changed during runtime via Cplex.set_solver.
   221 # First option: use the commercial cplex solver
   222 #LP_SOLVER=CPLEX
   223 #CPLEX_PATH=cplex
   224 # Second option: use the open source glpk solver
   225 #LP_SOLVER=GLPK
   226 #GLPK_PATH=glpsol
   227 
   228 # Misc programming languages
   229 #ISABELLE_GHC="/usr/local/ghc/$ISABELLE_PLATFORM/ghc"
   230 #ISABELLE_OCAML="/usr/local/ocaml/$ISABELLE_PLATFORM/ocaml"
   231 #ISABELLE_SWIPL="/usr/local/swipl/$ISABELLE_PLATFORM/swipl"