author | wenzelm |
Sat, 28 Jul 2012 19:37:35 +0200 | |
changeset 48580 | 9df76dd45900 |
parent 48527 | 4ee8d70cd5a3 |
child 48634 | 30a6e841390a |
permissions | -rw-r--r-- |
48367 | 1 |
(* :mode=isabelle-options: *) |
2 |
||
48370 | 3 |
declare browser_info : bool = false |
48580 | 4 |
-- "generate theory browser information" |
48367 | 5 |
|
48458 | 6 |
declare document : string = "" |
48580 | 7 |
-- "build document in given format: pdf, dvi, dvi.gz, ps, ps.gz, or false" |
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48463
diff
changeset
|
8 |
declare document_variants : string = "outline=/proof,/ML" |
48580 | 9 |
-- "declare alternative document variants (separated by colons)" |
48370 | 10 |
declare document_graph : bool = false |
48580 | 11 |
-- "generate session graph image for document" |
48457 | 12 |
declare document_dump : string = "" |
48580 | 13 |
-- "dump generated document sources into given directory" |
48516
c5d0f19ef7cb
refined "document_dump_mode": "all", "tex+sty", "tex";
wenzelm
parents:
48513
diff
changeset
|
14 |
declare document_dump_mode : string = "all" |
48580 | 15 |
-- "specific document dump mode: all, tex, tex+sty" |
48367 | 16 |
|
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48463
diff
changeset
|
17 |
declare threads : int = 0 |
48580 | 18 |
-- "maximum number of worker threads for prover process (0 = hardware max.)" |
48370 | 19 |
declare threads_trace : int = 0 |
48580 | 20 |
-- "level of tracing information for multithreading" |
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48463
diff
changeset
|
21 |
declare parallel_proofs : int = 2 |
48580 | 22 |
-- "level of parallel proof checking: 0, 1, 2" |
48370 | 23 |
declare parallel_proofs_threshold : int = 100 |
48580 | 24 |
-- "threshold for sub-proof parallelization" |
48367 | 25 |
|
48370 | 26 |
declare print_mode : string = "" |
48580 | 27 |
-- "additional print modes for prover output (separated by commas)" |
48367 | 28 |
|
48466
3b2fb20df17d
further imitation of ISABELLE_USEDIR_OPTIONS via options;
wenzelm
parents:
48463
diff
changeset
|
29 |
declare proofs : int = 1 |
48580 | 30 |
-- "level of detail for proof objects: 0, 1, 2" |
48370 | 31 |
declare quick_and_dirty : bool = false |
48580 | 32 |
-- "if true then some tools will OMIT some proofs" |
48367 | 33 |
|
48370 | 34 |
declare condition : string = "" |
48580 | 35 |
-- "required environment variables for subsequent theories (separated by commas)" |
48367 | 36 |
|
48486 | 37 |
declare show_question_marks : bool = true |
48580 | 38 |
-- "show leading question mark of schematic variables" |
48486 | 39 |
|
40 |
declare names_long : bool = false |
|
48580 | 41 |
-- "show fully qualified names" |
48486 | 42 |
declare names_short : bool = false |
48580 | 43 |
-- "show base names only" |
48486 | 44 |
declare names_unique : bool = true |
48580 | 45 |
-- "show partially qualified names, as required for unique name resolution" |
48486 | 46 |
|
48527 | 47 |
declare pretty_margin : int = 76 |
48580 | 48 |
-- "right margin / page width of pretty printer in Isabelle/ML" |
48527 | 49 |
|
48520 | 50 |
declare thy_output_display : bool = false |
48580 | 51 |
-- "indicate output as multi-line display-style material" |
52 |
declare thy_output_break : bool = false |
|
53 |
-- "control line breaks in non-display material" |
|
48520 | 54 |
declare thy_output_quotes : bool = false |
48580 | 55 |
-- "indicate if the output should be enclosed in double quotes" |
48520 | 56 |
declare thy_output_indent : int = 0 |
48580 | 57 |
-- "indentation for pretty printing of display material" |
48520 | 58 |
declare thy_output_source : bool = false |
48580 | 59 |
-- "print original source text rather than internal representation" |
48520 | 60 |
|
48492 | 61 |
declare timing : bool = false |
48580 | 62 |
-- "global timing of toplevel command execution and theory processing" |
48492 | 63 |