etc/options
author wenzelm
Tue, 11 Sep 2012 15:47:42 +0200
changeset 50285 e5d162d15867
parent 49820 c3ea910b3581
child 50303 2c9272cb4568
permissions -rw-r--r--
some support to organize options in sections;
     1 (* :mode=isabelle-options: *)
     2 
     3 section {* Document preparation *}
     4 
     5 option browser_info : bool = false
     6   -- "generate theory browser information"
     7 
     8 option document : string = ""
     9   -- "build document in given format: pdf, dvi, dvi.gz, ps, ps.gz, or false"
    10 option document_output : string = ""
    11   -- "document output directory (default within $ISABELLE_BROWSER_INFO tree)"
    12 option document_variants : string = "document"
    13   -- "option alternative document variants (separated by colons)"
    14 option document_graph : bool = false
    15   -- "generate session graph image for document"
    16 option document_dump : string = ""
    17   -- "dump generated document sources into given directory"
    18 option document_dump_mode : string = "all"
    19   -- "specific document dump mode: all, tex, tex+sty"
    20 
    21 option show_question_marks : bool = true
    22   -- "show leading question mark of schematic variables"
    23 
    24 option names_long : bool = false
    25   -- "show fully qualified names"
    26 option names_short : bool = false
    27   -- "show base names only"
    28 option names_unique : bool = true
    29   -- "show partially qualified names, as required for unique name resolution"
    30 
    31 option pretty_margin : int = 76
    32   -- "right margin / page width of pretty printer in Isabelle/ML"
    33 
    34 option thy_output_display : bool = false
    35   -- "indicate output as multi-line display-style material"
    36 option thy_output_break : bool = false
    37   -- "control line breaks in non-display material"
    38 option thy_output_quotes : bool = false
    39   -- "indicate if the output should be enclosed in double quotes"
    40 option thy_output_indent : int = 0
    41   -- "indentation for pretty printing of display material"
    42 option thy_output_source : bool = false
    43   -- "print original source text rather than internal representation"
    44 
    45 
    46 option print_mode : string = ""
    47   -- "additional print modes for prover output (separated by commas)"
    48 
    49 
    50 section {* Parallel checking *}
    51 
    52 option threads : int = 0
    53   -- "maximum number of worker threads for prover process (0 = hardware max.)"
    54 option threads_trace : int = 0
    55   -- "level of tracing information for multithreading"
    56 option parallel_proofs : int = 2
    57   -- "level of parallel proof checking: 0, 1, 2"
    58 option parallel_proofs_threshold : int = 100
    59   -- "threshold for sub-proof parallelization"
    60 
    61 
    62 section {* Detail of proof recording *}
    63 
    64 option proofs : int = 1
    65   -- "level of detail for proof objects: 0, 1, 2"
    66 option quick_and_dirty : bool = false
    67   -- "if true then some tools will OMIT some proofs"
    68 option skip_proofs : bool = false
    69   -- "skip over proofs"
    70 
    71 
    72 section {* Global session parameters *}
    73 
    74 option condition : string = ""
    75   -- "required environment variables for subsequent theories (separated by commas)"
    76 
    77 option timing : bool = false
    78   -- "global timing of toplevel command execution and theory processing"
    79 
    80 option timeout : real = 0
    81   -- "timeout for session build job (seconds > 0)"
    82