mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
indentation and updated links to default landing pages
This commit is contained in:
parent
bcbda45298
commit
2ead209d40
|
@ -225,6 +225,15 @@ try:
|
||||||
|
|
||||||
website_dox_substitutions = {}
|
website_dox_substitutions = {}
|
||||||
bullet_point_prefix='\n - '
|
bullet_point_prefix='\n - '
|
||||||
|
website_dox_substitutions['CPP_API'] = (
|
||||||
|
'{prefix}<a class="el" href="namespacez3.html">C++ API</a> '
|
||||||
|
).format(
|
||||||
|
prefix=bullet_point_prefix)
|
||||||
|
website_dox_substitutions['C_API'] = (
|
||||||
|
'{prefix}<a class="el" href="z3__api_8h.html">C API</a> '
|
||||||
|
).format(
|
||||||
|
prefix=bullet_point_prefix)
|
||||||
|
|
||||||
if Z3PY_ENABLED:
|
if Z3PY_ENABLED:
|
||||||
print("Python documentation enabled")
|
print("Python documentation enabled")
|
||||||
website_dox_substitutions['PYTHON_API'] = (
|
website_dox_substitutions['PYTHON_API'] = (
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
This website hosts the automatically generated documentation for the Z3 APIs.
|
This website hosts the automatically generated documentation for the Z3 APIs.
|
||||||
|
|
||||||
- \ref capi
|
- \ref @C_API@
|
||||||
- \ref cppapi @DOTNET_API@ @JAVA_API@ @PYTHON_API@ @OCAML_API@
|
- \ref @CPP_API@ @DOTNET_API@ @JAVA_API@ @PYTHON_API@ @OCAML_API@
|
||||||
- Try Z3 online at <a href="http://rise4fun.com/z3">RiSE4Fun</a>.
|
- Try Z3 online at <a href="http://rise4fun.com/z3">RiSE4Fun</a>.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -739,7 +739,6 @@ typedef enum
|
||||||
[mp~ T1 T2]: q
|
[mp~ T1 T2]: q
|
||||||
|
|
||||||
- Z3_OP_PR_TH_LEMMA: Generic proof for theory lemmas.
|
- Z3_OP_PR_TH_LEMMA: Generic proof for theory lemmas.
|
||||||
|
|
||||||
The theory lemma function comes with one or more parameters.
|
The theory lemma function comes with one or more parameters.
|
||||||
The first parameter indicates the name of the theory.
|
The first parameter indicates the name of the theory.
|
||||||
For the theory of arithmetic, additional parameters provide hints for
|
For the theory of arithmetic, additional parameters provide hints for
|
||||||
|
@ -750,9 +749,8 @@ typedef enum
|
||||||
inequalities in the lemma, add the (negated) inequalities and obtain a contradiction.
|
inequalities in the lemma, add the (negated) inequalities and obtain a contradiction.
|
||||||
|
|
||||||
- triangle-eq - Indicates a lemma related to the equivalence:
|
- triangle-eq - Indicates a lemma related to the equivalence:
|
||||||
\nicebox{
|
|
||||||
(iff (= t1 t2) (and (<= t1 t2) (<= t2 t1)))
|
(iff (= t1 t2) (and (<= t1 t2) (<= t2 t1)))
|
||||||
}
|
|
||||||
|
|
||||||
- gcd-test - Indicates an integer linear arithmetic lemma that uses a gcd test.
|
- gcd-test - Indicates an integer linear arithmetic lemma that uses a gcd test.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue