| author | wenzelm | 
| Fri, 12 Apr 2013 12:20:51 +0200 | |
| changeset 51699 | 0539e75b4170 | 
| parent 51564 | bfdc3f720bd6 | 
| child 51960 | 61ac1efe02c3 | 
| permissions | -rw-r--r-- | 
| 48367 | 1 | (* :mode=isabelle-options: *) | 
| 2 | ||
| 49295 | 3 | section "Document Preparation" | 
| 49270 | 4 | |
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 5 | option browser_info : bool = false | 
| 48580 | 6 | -- "generate theory browser information" | 
| 48367 | 7 | |
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 8 | option document : string = "" | 
| 48580 | 9 | -- "build document in given format: pdf, dvi, dvi.gz, ps, ps.gz, or false" | 
| 48805 
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
 wenzelm parents: 
48795diff
changeset | 10 | option document_output : string = "" | 
| 
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
 wenzelm parents: 
48795diff
changeset | 11 | -- "document output directory (default within $ISABELLE_BROWSER_INFO tree)" | 
| 
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
 wenzelm parents: 
48795diff
changeset | 12 | option document_variants : string = "document" | 
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 13 | -- "option alternative document variants (separated by colons)" | 
| 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 14 | option document_graph : bool = false | 
| 48580 | 15 | -- "generate session graph image for document" | 
| 48367 | 16 | |
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 17 | option show_question_marks : bool = true | 
| 48580 | 18 | -- "show leading question mark of schematic variables" | 
| 48486 | 19 | |
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 20 | option names_long : bool = false | 
| 48580 | 21 | -- "show fully qualified names" | 
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 22 | option names_short : bool = false | 
| 48580 | 23 | -- "show base names only" | 
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 24 | option names_unique : bool = true | 
| 48580 | 25 | -- "show partially qualified names, as required for unique name resolution" | 
| 48486 | 26 | |
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 27 | option pretty_margin : int = 76 | 
| 48580 | 28 | -- "right margin / page width of pretty printer in Isabelle/ML" | 
| 48527 | 29 | |
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 30 | option thy_output_display : bool = false | 
| 48580 | 31 | -- "indicate output as multi-line display-style material" | 
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 32 | option thy_output_break : bool = false | 
| 48580 | 33 | -- "control line breaks in non-display material" | 
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 34 | option thy_output_quotes : bool = false | 
| 48580 | 35 | -- "indicate if the output should be enclosed in double quotes" | 
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 36 | option thy_output_indent : int = 0 | 
| 48580 | 37 | -- "indentation for pretty printing of display material" | 
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 38 | option thy_output_source : bool = false | 
| 48580 | 39 | -- "print original source text rather than internal representation" | 
| 48520 | 40 | |
| 49270 | 41 | |
| 42 | option print_mode : string = "" | |
| 43 | -- "additional print modes for prover output (separated by commas)" | |
| 44 | ||
| 45 | ||
| 49295 | 46 | section "Parallel Checking" | 
| 49270 | 47 | |
| 48 | option threads : int = 0 | |
| 49 | -- "maximum number of worker threads for prover process (0 = hardware max.)" | |
| 50 | option threads_trace : int = 0 | |
| 51 | -- "level of tracing information for multithreading" | |
| 52 | option parallel_proofs : int = 2 | |
| 53 | -- "level of parallel proof checking: 0, 1, 2" | |
| 51423 
e5f9a6d9ca82
clarified parallel_subproofs_saturation (blind guess) vs. parallel_subproofs_threshold (precient timing estimate);
 wenzelm parents: 
51230diff
changeset | 54 | option parallel_subproofs_saturation : int = 100 | 
| 
e5f9a6d9ca82
clarified parallel_subproofs_saturation (blind guess) vs. parallel_subproofs_threshold (precient timing estimate);
 wenzelm parents: 
51230diff
changeset | 55 | -- "upper bound for forks of nested proofs (multiplied by worker threads)" | 
| 
e5f9a6d9ca82
clarified parallel_subproofs_saturation (blind guess) vs. parallel_subproofs_threshold (precient timing estimate);
 wenzelm parents: 
51230diff
changeset | 56 | option parallel_subproofs_threshold : real = 0.01 | 
| 
e5f9a6d9ca82
clarified parallel_subproofs_saturation (blind guess) vs. parallel_subproofs_threshold (precient timing estimate);
 wenzelm parents: 
51230diff
changeset | 57 | -- "lower bound of timing estimate for forked nested proofs (seconds)" | 
| 49270 | 58 | |
| 59 | ||
| 49295 | 60 | section "Detail of Proof Recording" | 
| 49270 | 61 | |
| 62 | option proofs : int = 1 | |
| 63 | -- "level of detail for proof objects: 0, 1, 2" | |
| 64 | option quick_and_dirty : bool = false | |
| 65 | -- "if true then some tools will OMIT some proofs" | |
| 66 | option skip_proofs : bool = false | |
| 51553 
63327f679cff
more ambitious Goal.skip_proofs: covers Goal.prove forms as well, and do not insist in quick_and_dirty (for the sake of Isabelle/jEdit);
 wenzelm parents: 
51423diff
changeset | 67 | -- "skip over proofs (implicit 'sorry')" | 
| 49270 | 68 | |
| 69 | ||
| 49295 | 70 | section "Global Session Parameters" | 
| 49270 | 71 | |
| 72 | option condition : string = "" | |
| 73 | -- "required environment variables for subsequent theories (separated by commas)" | |
| 74 | ||
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 75 | option timing : bool = false | 
| 48580 | 76 | -- "global timing of toplevel command execution and theory processing" | 
| 48492 | 77 | |
| 48795 
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
 wenzelm parents: 
48661diff
changeset | 78 | option timeout : real = 0 | 
| 48661 | 79 | -- "timeout for session build job (seconds > 0)" | 
| 80 | ||
| 49288 | 81 | |
| 49295 | 82 | section "Editor Reactivity" | 
| 49288 | 83 | |
| 51554 
041bc3d31f23
separate option editor_skip_proofs, to avoid accidental change of preferences for skip_proofs, which would invalidate batch builds;
 wenzelm parents: 
51553diff
changeset | 84 | option editor_skip_proofs : bool = false | 
| 
041bc3d31f23
separate option editor_skip_proofs, to avoid accidental change of preferences for skip_proofs, which would invalidate batch builds;
 wenzelm parents: 
51553diff
changeset | 85 | -- "skip over proofs (implicit 'sorry')" | 
| 
041bc3d31f23
separate option editor_skip_proofs, to avoid accidental change of preferences for skip_proofs, which would invalidate batch builds;
 wenzelm parents: 
51553diff
changeset | 86 | |
| 49288 | 87 | option editor_load_delay : real = 0.5 | 
| 88 | -- "delay for file load operations (new buffers etc.)" | |
| 89 | ||
| 90 | option editor_input_delay : real = 0.3 | |
| 91 | -- "delay for user input (text edits, cursor movement etc.)" | |
| 92 | ||
| 93 | option editor_output_delay : real = 0.1 | |
| 94 | -- "delay for prover output (markup, common messages etc.)" | |
| 95 | ||
| 96 | option editor_update_delay : real = 0.5 | |
| 97 | -- "delay for physical GUI updates" | |
| 98 | ||
| 49524 
68796a77c42b
Thy_Syntax.consolidate_spans is subject to editor_reparse_limit, for improved experience of unbalanced comments etc.;
 wenzelm parents: 
49295diff
changeset | 99 | option editor_reparse_limit : int = 10000 | 
| 
68796a77c42b
Thy_Syntax.consolidate_spans is subject to editor_reparse_limit, for improved experience of unbalanced comments etc.;
 wenzelm parents: 
49295diff
changeset | 100 | -- "maximum amount of reparsed text outside perspective" | 
| 50119 
5c370a036de7
more generous tracing_limit, with explicit system option;
 wenzelm parents: 
49524diff
changeset | 101 | |
| 51044 
890f502f0e89
more generous tracing limit, which is relevant for applications where this occurs routinely (e.g. HO unification trace);
 wenzelm parents: 
50698diff
changeset | 102 | option editor_tracing_messages : int = 1000 | 
| 50505 
33c92722cc3d
smarter handling of tracing messages: prover process pauses and enters user dialog;
 wenzelm parents: 
50455diff
changeset | 103 | -- "initial number of tracing messages for each command transaction" | 
| 50697 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 wenzelm parents: 
50505diff
changeset | 104 | |
| 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 wenzelm parents: 
50505diff
changeset | 105 | option editor_chart_delay : real = 3.0 | 
| 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 wenzelm parents: 
50505diff
changeset | 106 | -- "delay for chart repainting" |