3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-22 16:27:37 +00:00

git bindings v1.0

This commit is contained in:
Nikolaj Bjorner 2026-02-15 21:24:40 -08:00
parent adacc27644
commit a03500a194
33 changed files with 5289 additions and 7 deletions

View file

@ -1,7 +1,7 @@
API documentation
-----------------
To generate the API documentation for the C, C++, .NET, Java and Python APIs, we must execute
To generate the API documentation for the C, C++, .NET, Java, Python, and Go APIs, we must execute
python mk_api_doc.py
@ -10,6 +10,12 @@ We must have doxygen installed in our system.
The documentation will be stored in the subdirectory './api/html'.
The main file is './api/html/index.html'
To include Go API documentation, use:
python mk_api_doc.py --go
Note: Go documentation requires Go to be installed (for godoc support).
Code documentation
------------------