author | blanchet |
Mon, 03 Mar 2014 12:48:20 +0100 | |
changeset 55868 | 37b99986d435 |
parent 55672 | 5e25cc741ab9 |
child 56265 | 785569927666 |
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:
48661
diff
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:
48661
diff
changeset
|
8 |
option document : string = "" |
52746 | 9 |
-- "build document in given format: pdf, dvi, false" |
48805
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48795
diff
changeset
|
10 |
option document_output : string = "" |
c3ea910b3581
explicit document_output directory, without implicit purge of default in ISABELLE_BROWSER_INFO;
wenzelm
parents:
48795
diff
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:
48795
diff
changeset
|
12 |
option document_variants : string = "document" |
48795
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents:
48661
diff
changeset
|
13 |
-- "option alternative document variants (separated by colons)" |
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents:
48661
diff
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:
48661
diff
changeset
|
17 |
option thy_output_display : bool = false |
48580 | 18 |
-- "indicate output as multi-line display-style material" |
48795
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents:
48661
diff
changeset
|
19 |
option thy_output_break : bool = false |
48580 | 20 |
-- "control line breaks in non-display material" |
48795
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents:
48661
diff
changeset
|
21 |
option thy_output_quotes : bool = false |
48580 | 22 |
-- "indicate if the output should be enclosed in double quotes" |
48795
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents:
48661
diff
changeset
|
23 |
option thy_output_indent : int = 0 |
48580 | 24 |
-- "indentation for pretty printing of display material" |
48795
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents:
48661
diff
changeset
|
25 |
option thy_output_source : bool = false |
48580 | 26 |
-- "print original source text rather than internal representation" |
52042 | 27 |
option thy_output_modes : string = "" |
28 |
-- "additional print modes for document output (separated by commas)" |
|
49270 | 29 |
|
52043
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
30 |
|
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
31 |
section "Prover Output" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
32 |
|
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
33 |
option show_types : bool = false |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
34 |
-- "show type constraints when printing terms" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
35 |
option show_sorts : bool = false |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
36 |
-- "show sort constraints when printing types" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
37 |
option show_brackets : bool = false |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
38 |
-- "show extra brackets when printing terms/types" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
39 |
option show_question_marks : bool = true |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
40 |
-- "show leading question mark of schematic variables" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
41 |
|
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
42 |
option show_consts : bool = false |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
43 |
-- "show constants with types when printing proof state" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
44 |
option show_main_goal : bool = false |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
45 |
-- "show main goal when printing proof state" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
46 |
option goals_limit : int = 10 |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
47 |
-- "maximum number of subgoals to be printed" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
48 |
|
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
49 |
option names_long : bool = false |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
50 |
-- "show fully qualified names" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
51 |
option names_short : bool = false |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
52 |
-- "show base names only" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
53 |
option names_unique : bool = true |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
54 |
-- "show partially qualified names, as required for unique name resolution" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
55 |
|
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
56 |
option eta_contract : bool = true |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
57 |
-- "print terms in eta-contracted form" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
58 |
|
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
59 |
option pretty_margin : int = 76 |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
60 |
-- "right margin / page width of pretty printer in Isabelle/ML" |
286629271d65
more system options as context-sensitive config options;
wenzelm
parents:
52042
diff
changeset
|
61 |
|
49270 | 62 |
option print_mode : string = "" |
63 |
-- "additional print modes for prover output (separated by commas)" |
|
64 |
||
65 |
||
49295 | 66 |
section "Parallel Checking" |
49270 | 67 |
|
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
68 |
public option threads : int = 0 |
49270 | 69 |
-- "maximum number of worker threads for prover process (0 = hardware max.)" |
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
70 |
public option threads_trace : int = 0 |
49270 | 71 |
-- "level of tracing information for multithreading" |
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
72 |
public option parallel_proofs : int = 2 |
49270 | 73 |
-- "level of parallel proof checking: 0, 1, 2" |
52714 | 74 |
option parallel_subproofs_threshold : real = 0.01 |
51423
e5f9a6d9ca82
clarified parallel_subproofs_saturation (blind guess) vs. parallel_subproofs_threshold (precient timing estimate);
wenzelm
parents:
51230
diff
changeset
|
75 |
-- "lower bound of timing estimate for forked nested proofs (seconds)" |
49270 | 76 |
|
77 |
||
52490 | 78 |
section "Detail of Proof Checking" |
49270 | 79 |
|
80 |
option quick_and_dirty : bool = false |
|
81 |
-- "if true then some tools will OMIT some proofs" |
|
82 |
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:
51423
diff
changeset
|
83 |
-- "skip over proofs (implicit 'sorry')" |
49270 | 84 |
|
85 |
||
49295 | 86 |
section "Global Session Parameters" |
49270 | 87 |
|
88 |
option condition : string = "" |
|
89 |
-- "required environment variables for subsequent theories (separated by commas)" |
|
90 |
||
48795
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents:
48661
diff
changeset
|
91 |
option timing : bool = false |
48580 | 92 |
-- "global timing of toplevel command execution and theory processing" |
48492 | 93 |
|
48795
bece259ee055
clarified format of etc/options: only declarations, not re-definitions;
wenzelm
parents:
48661
diff
changeset
|
94 |
option timeout : real = 0 |
48661 | 95 |
-- "timeout for session build job (seconds > 0)" |
96 |
||
51962
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
wenzelm
parents:
51960
diff
changeset
|
97 |
option process_output_limit : int = 100 |
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
wenzelm
parents:
51960
diff
changeset
|
98 |
-- "build process output limit in million characters (0 = unlimited)" |
016cb7d8f297
limit build process output, to avoid bombing Isabelle/Scala process by ill-behaved jobs (e.g. Containers in AFP/9025435b29cf);
wenzelm
parents:
51960
diff
changeset
|
99 |
|
49288 | 100 |
|
49295 | 101 |
section "Editor Reactivity" |
49288 | 102 |
|
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
103 |
public option editor_load_delay : real = 0.5 |
49288 | 104 |
-- "delay for file load operations (new buffers etc.)" |
105 |
||
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
106 |
public option editor_input_delay : real = 0.3 |
49288 | 107 |
-- "delay for user input (text edits, cursor movement etc.)" |
108 |
||
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
109 |
public option editor_output_delay : real = 0.1 |
49288 | 110 |
-- "delay for prover output (markup, common messages etc.)" |
111 |
||
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
112 |
public option editor_update_delay : real = 0.5 |
49288 | 113 |
-- "delay for physical GUI updates" |
114 |
||
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
115 |
public option editor_reparse_limit : int = 10000 |
49524
68796a77c42b
Thy_Syntax.consolidate_spans is subject to editor_reparse_limit, for improved experience of unbalanced comments etc.;
wenzelm
parents:
49295
diff
changeset
|
116 |
-- "maximum amount of reparsed text outside perspective" |
50119
5c370a036de7
more generous tracing_limit, with explicit system option;
wenzelm
parents:
49524
diff
changeset
|
117 |
|
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
118 |
public option editor_tracing_messages : int = 1000 |
50505
33c92722cc3d
smarter handling of tracing messages: prover process pauses and enters user dialog;
wenzelm
parents:
50455
diff
changeset
|
119 |
-- "initial number of tracing messages for each command transaction" |
50697
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
wenzelm
parents:
50505
diff
changeset
|
120 |
|
52065
78f2475aa126
explicit notion of public options, which are shown in the editor options dialog;
wenzelm
parents:
52043
diff
changeset
|
121 |
public option editor_chart_delay : real = 3.0 |
50697
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
wenzelm
parents:
50505
diff
changeset
|
122 |
-- "delay for chart repainting" |
52702 | 123 |
|
52807
b859a180936b
simplified flag for continuous checking: avoid GUI complexity and slow checking of all theories (including prints);
wenzelm
parents:
52798
diff
changeset
|
124 |
public option editor_continuous_checking : bool = true |
b859a180936b
simplified flag for continuous checking: avoid GUI complexity and slow checking of all theories (including prints);
wenzelm
parents:
52798
diff
changeset
|
125 |
-- "continuous checking of proof document (visible and required parts)" |
b859a180936b
simplified flag for continuous checking: avoid GUI complexity and slow checking of all theories (including prints);
wenzelm
parents:
52798
diff
changeset
|
126 |
|
52798
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
wenzelm
parents:
52779
diff
changeset
|
127 |
option editor_execution_delay : real = 0.02 |
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
wenzelm
parents:
52779
diff
changeset
|
128 |
-- "delay for start of execution process after document update (seconds)" |
9d3c9862d1dd
recovered delay for Document.start_execution (see also 627fb639a2d9), which potentially improves throughput when many consecutive edits arrive;
wenzelm
parents:
52779
diff
changeset
|
129 |
|
52702 | 130 |
|
131 |
section "Miscellaneous Tools" |
|
132 |
||
133 |
public option find_theorems_limit : int = 40 |
|
134 |
-- "limit of displayed results" |
|
135 |
||
136 |
public option find_theorems_tac_limit : int = 5 |
|
137 |
-- "limit of tactic search for 'solves' criterion" |
|
138 |
||
55672
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
53189
diff
changeset
|
139 |
|
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
53189
diff
changeset
|
140 |
section "Completion" |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
53189
diff
changeset
|
141 |
|
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
53189
diff
changeset
|
142 |
public option completion_limit : int = 40 |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
53189
diff
changeset
|
143 |
-- "limit for completion within the formal context" |
5e25cc741ab9
support for completion within the formal context;
wenzelm
parents:
53189
diff
changeset
|
144 |