-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmkdocs.yml
More file actions
213 lines (200 loc) · 7.91 KB
/
Copy pathmkdocs.yml
File metadata and controls
213 lines (200 loc) · 7.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
site_name: KeY Documentation
site_url: https://keyproject.github.io/key-docs/
hooks:
- hooks/approval.py
- hooks/author.py
plugins:
- search
- mermaid2
- bibtex:
bib_file: "refs.bib"
# cite_style: "pandoc"
# csl_file: "springer-basic-author-date.csl"
markdown_extensions:
- abbr
- admonition
- pymdownx.highlight
- footnotes
- meta
- md_in_html
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.magiclink
- pymdownx.tabbed:
alternate_style: true
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
# format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- attr_list
- def_list
- tables
- toc:
permalink: true
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
theme: # material theme
name: material
logo: key.png
favicon: key.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: 'blue grey'
accent: 'teal'
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: 'dark'
accent: 'orange'
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- content.code.annotate
- content.tabs.link
icon:
repo: fontawesome/brands/github
nav:
- Home: index.md
- User Guide:
- "Welcome": user/index.md
- "1. Getting Started":
- "The Quicktour": quicktour/index.md
- "Installation": quicktour/install.md
- "Loading JML Contracts": quicktour/loading.md
- "Proving JML Contracts": quicktour/proving.md
- "Appendix: Tips and Background": quicktour/appendix.md
- "2. Working with the Prover":
- "Overview": user/UiFeatures/index.md
- "The Taclet Match Dialog": user/TacletMatchDialog/index.md
- "Excluding Goals from Automation": user/Interactive.md
- "Proof Exploration": user/Exploration.md
- "Comparing Proof Nodes": user/NodeDiff.md
- "Linearized Proof Tree": user/ProofTreeLinearMode.md
- "Proof Caching": user/ProofCaching/index.md
- "Proof Slicing": user/ProofSlicing/index.md
- "3. Structuring Verification Projects":
- "The Classpath Directive": user/Classpath.md
- "Programs with Generics": user/RemoveGenerics.md
- "User-Defined Data Types": user/ADTs.md
- "JavaDL Escapes in JML": user/JavaDLinJML.md
- "4. Proof Scripts":
- "Overview": user/ProofScripts/index.md
- "Language Constructs": user/ProofScripts/language.md
- "Command Reference": user/ProofScripts/commands.md
- "Script Variables": user/ProofScripts/variables.md
- "Macros": user/ProofScripts/macros.md
- "Linear Proof Scripts": user/ProofScripts/linearScripts.md
- "Proof Scripts in JML": user/ProofScripts/jml.md
- "Historical Notes (2015)": user/ProofScripts/original.md
- "5. SMT Solvers":
- "Adding SMT Solvers": user/SMT/AddingSMTSolvers.md
- "6. Bridges to Other Tools":
- "Isabelle Translation": user/IsabelleTranslation/index.md
# - "LLM Support": user/LLM/index.md # empty skeleton page, re-add when written
- "7. Language Reference":
- "JML Grammar": user/JMLGrammar.md
- "The KeY Language": user/KeyGrammar.md
- "KeY's Java Extensions": user/JavaGrammar.md
- "8. FAQ": user/FAQ.md
- "Release Notes": changelog.md
- Developer Guide:
- "Welcome": devel/index.md
- "1. Architecture": devel/Architecture.md
- "2. Building KeY": devel/Gradle.md
- "3. Working on the Code":
- "Coding Conventions": devel/CodingConventions.md
- "Formatting with Spotless": devel/SpotlessAutomaticFormatting.md
- "Logging": devel/Logging.md
- "4. Extending KeY":
- "Overview": devel/ExtendingKeY.md
- "How-Tos (verified recipes)":
- "Overview": devel/howto/index.md
- "Add an Extension Module": devel/howto/AddExtension.md
- "Add a Menu Entry": devel/howto/AddMenuEntry.md
- "Add a Toolbar": devel/howto/AddToolbarAction.md
- "Add Taclets": devel/howto/AddTaclets.md
- "Add a Proof Macro": devel/howto/AddProofMacro.md
- "Add a Script Command": devel/howto/AddScriptCommand.md
- "Add a Term Label": devel/howto/AddTermLabel.md
- "Writing Taclets": devel/HowToTaclet.md
- "Polarity Triggers for Rewrite Taclets": user/Polarity.md
- "GUI Extension Points": devel/GUIExtensions.md
- "Script Commands in Depth": devel/ScriptCommands.md
- "Adding SMT Solvers": devel/AddingSMTSolvers.md
- "Event Listeners": devel/Listeners.md
- "5. Using KeY as a Library":
- "KeY in External Projects": devel/ExternalProject.md
- "JSON-RPC Interface": devel/rpc/index.md
- "6. Internals":
- "Proof search":
- "The Rule Application Pipeline": devel/RuleApplicationPipeline.md
- "Strategy Costs and the Cost-Band Ladder": devel/StrategyCosts.md
- "Multi-Core Proving": devel/Multithreading.md
- "Terms and parsing":
- "The KeY Parser": devel/NewKeyParser.md
- "Term Labels": devel/TermLabels.md
- "Proofs and external solvers":
- "Proof Loading and Saving": devel/ProofLoadSave.md
- "SMT Translation": devel/SMTTranslation.md
- "Counterexample Generation": devel/CounterExampleGeneration.md
- "Legacy":
- "Extending Recoder (obsolete)": devel/How2ExtRecoder.md
- "7. Testing":
- "Overview": devel/Testing/index.md
- "Proved Rules": devel/Testing/ProveRules.md
- "RunAllProofs": devel/Testing/RunAllProves.md
- "Deterministic Test Order (outdated)": devel/Testing/deterministicTestOrder.md
- "Parser Message Tests": devel/Testing/parserMessageTest.md
- "CI Infrastructure": devel/Testing/TestingInfrastructure.md
- "8. Writing Documentation": devel/howtodoc/index.md
- "9. Appendices":
- "Strategy Cost Tables": devel/StrategyCostTables.md
- Historical:
- Eclipse plugins (unsupported):
- "Overview": eclipse/index.md
- "KeY basics": eclipse/CrossProject/index.md
- "SED": eclipse/SED/index.md
- "Stubby": eclipse/Stubby/index.md
- "KeY IDE": eclipse/KeYIDE/index.md
- "MonKeY": eclipse/MonKeY/index.md
- "Starter": eclipse/Starter/index.md
- "VisualDBC": eclipse/VisualDbC/index.md
- "JML Editing": eclipse/JMLEditing/index.md
- "Resources" : eclipse/KeYResources/index.md
- KeY Enhancement Proposals:
- "About KEPs": keps/index.md
- "KEP-1: Taclet-Generating Transformers": keps/kep-0001-taclet-generating-transformers/index.md
extra_css:
- extra.css
# nav_style: dark
# logo: 'https://git.key-project.org/uploads/-/system/appearance/logo/1/key-color.png'
#feature:
# tabs: true
repo_name: key-docs
repo_url: https://github.com/KeYProject/key-docs/
edit_uri: edit/master/docs/