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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
|
C API Documentation
===================
The :doc:`C API <interface>` of Bitwuzla is implemented as a thin wrapper
around its :doc:`C++ API <../cpp/api>`, Bitwuzla's primary API.
This section provides a :ref:`quickstart <c/api:quickstart>` guide to give an
introduction on how to use the C API and a comprehensive set of :ref:`examples
<c/api:examples>` to cover basic and common use cases. A comprehensive
description of the interface is given :doc:`here <interface>`.
----
.. toctree::
:maxdepth: 1
interface
options
Term Kinds <enums/bitwuzlakind>
Parser <types/bitwuzlaparser>
.. contents::
:local:
----
Quickstart
----------
First, create a :cpp:type:`BitwuzlaTermManager` instance that allows us to
create sorts and terms later:
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-0 start
:end-before: docs-c-quickstart-0 end
Then, create a :cpp:type:`BitwuzlaOptions` instance:
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-1 start
:end-before: docs-c-quickstart-1 end
This instance can be configured via :cpp:func:`bitwuzla_set_option()`.
For example, to enable model generation
(SMT-LIB: :code:`(set-option :produce-models true)`):
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-2 start
:end-before: docs-c-quickstart-2 end
Some options have **modes**, which can be configured via the string
representation of their modes. For example, to enable CaDiCaL as back end SAT
solver (this is for illustration purposes only, CaDiCaL is configured by
default):
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-3 start
:end-before: docs-c-quickstart-3 end
For more details on available options, see :doc:`/c/options`.
Then, create a :cpp:type:`Bitwuzla` **solver** instance with a term manager
and configured options (configuration options are now frozen and cannot be
changed for this instance):
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-4 start
:end-before: docs-c-quickstart-4 end
Next, you will want to **create** some **expressions** via the term manager
`tm` and **assert formulas**.
.. note::
Sorts and terms can be shared between multiple solver instances as long as
these solvers use the same term manager.
For example, consider the following SMT-LIB input:
.. literalinclude:: ../../examples/smt2/quickstart.smt2
:language: smtlib
This input is created and asserted as follows:
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-5 start
:end-before: docs-c-quickstart-5 end
Alternatively, you can **parse** an **input file** in BTOR2 format
:cite:`btor2` or SMT-LIB v2 format :cite:`smtlib2` by creating a parser via
:cpp:func:`bitwuzla_parser_new()` and then parsing the input file via
:cpp:func:`bitwuzla_parser_parse()`.
.. note::
The input parser creates a :cpp:type:`Bitwuzla` instance, which can be
configured via the :cpp:type:`BitwuzlaOptions` instance passed into the
parser. This Bitwuzla instance can be retrieved via
:cpp:func:`bitwuzla_parser_get_bitwuzla()`.
For example, to parse an example file `examples/smt2/quickstart.smt2` in SMT-LIB format:
.. literalinclude:: ../../examples/c/parse.c
:language: c
:lines: 19-28,31-36
.. note::
If the input is given in SMT-LIB format, commands like :code:`check-sat`
or :code:`get-value` will be executed while parsing if argument `parse_only`
is passed into :cpp:func:`bitwuzla_parser_parse()` as :code:`true`.
After parsing from an input file, the **parsed assertions** can be retrieved
via :cpp:func:`bitwuzla_get_assertions()`:
.. literalinclude:: ../../examples/c/parse.c
:language: c
:lines: 38-48
Alternatively, Bitwuzla also supports **parsing from strings** via
:cpp:func:`bitwuzla_parser_parse()`. The quickstart input above can be parsed
as one huge input string, or any its subsets of commands.
Bitwuzla also allows to **add onto** input parsed from a file.
For example, after parsing in ``examples/smt2/quickstart.smt2``, which is
satisfiable, we add an assertion (which now makes the input formula
unsatisfiable) via parsing from string as follows:
.. literalinclude:: ../../examples/c/parse.c
:language: c
:lines: 51-54
Bitwuzla also supports **parsing terms and sorts from strings** via
:cpp:func:`bitwuzla_parser_parse_term()` and
:cpp:func:`bitwuzla_parser_parse_sort()`.
.. note:: Declarations like :code:`declare-const` are commands (not terms) in the
SMT-LIB language. Commands must be parsed in via
:cpp:func:`bitwuzla_parser_parse()`.
Function :cpp:func:`bitwuzla_parser_parse_term()` and
:cpp:func:`bitwuzla_parser_parse_sort()` only support parsing
SMT-LIB terms and sorts, respectively.
For example, to **parse** a bit-vector **sort** of size 16 from string and show
that it corresponds to the bit-vector sort of size 16 created via
:cpp:func:`bitwuzla_mk_bv_sort()`:
.. literalinclude:: ../../examples/c/parse.c
:language: c
:lines: 65-72
Then, to **declare** Boolean constants :code:`c` and :code:`d` and a bit-vector
constant :code:`b`:
.. literalinclude:: ../../examples/c/parse.c
:language: c
:lines: 78-87
These terms can be retrieved via :cpp:func:`bitwuzla_parser_parse_term()`:
.. literalinclude:: ../../examples/c/parse.c
:language: c
:lines: 88-99
Now, to **parse** in **terms** using these constants via
:cpp:func:`bitwuzla_parser_parse_term()`:
.. literalinclude:: ../../examples/c/parse.c
:language: c
:lines: 100-112
After parsing input and asserting formulas, **satisfiability** can be
determined via :cpp:func:`bitwuzla_check_sat()`.
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-6 start
:end-before: docs-c-quickstart-6 end
Formulas can also be **assumed** via :cpp:func:`bitwuzla_check_sat_assuming()`.
If the formula is satisfiable and **model generation** has been enabled, the
resulting model can be printed via :cpp:func:`bitwuzla_get_value()` and
:cpp:func:`bitwuzla_term_to_string()`. An example implementation illustrating
how to print the current model via declared symbols (in this case :code:`x`,
:code:`y`, :code:`f` and :code:`a`) is below:
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-7 start
:end-before: docs-c-quickstart-7 end
This will output a possible model, in this case:
.. code-block:: smtlib
(
(define-fun x () (_ BitVec 8) #b10011111)
(define-fun y () (_ BitVec 8) #b11111111)
(define-fun f ((@bzla.var_74 (_ BitVec 8)) (@bzla.var_75 (_ BitVec 4))) (_ BitVec 8) (ite (and (= @bzla.var_74 #b10011111) (= @bzla.var_75 #b0011)) #b11111111 #b00000000))
(define-fun a () (Array (_ BitVec 8) (_ BitVec 8)) (store ((as const (Array (_ BitVec 8) (_ BitVec 8))) #b00000000) #b10011111 #b11111111))
)
Alternatively, it is possible to query the value of terms as assignment
string via :cpp:func:`bitwuzla_term_value_get_str()`, or as a term via
:cpp:func:`bitwuzla_get_value()`.
Additionally, for floating-point values,
:cpp:func:`bitwuzla_term_value_get_fp_ieee` allows to retrieve the assignment
split into assignment strings for the sign bit, the exponent and the
significand.
For Boolean and :code:`RoundingMode` values,
:cpp:func:`bitwuzla_term_value_get_bool()` and
:cpp:func:`bitwuzla_term_value_get_rm()` allow the values as :code:`bool` and
:cpp:enum:`BitwuzlaRoundingMode`, respectively.
In our case, we can query the assignments of :code:`x` and :code:`y`, both
bit-vector terms, as binary strings:
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-8 start
:end-before: docs-c-quickstart-8 end
This will print:
.. code-block::
value of x: 10011111
value of y: 11111111
The value of :code:`f` (a function term) and :code:`a` (an array term), on the
other hand, cannot be represented with a simple type. Thus, function values are
given as :cpp:enum:`BITWUZLA_KIND_LAMBDA`, and array
values are given as
:cpp:enum:`BITWUZLA_KIND_ARRAY_STORE`.
We can retrieve an SMT-LIB2 string representation of the values via
:cpp:func:`bitwuzla_term_to_string()`:
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-9 start
:end-before: docs-c-quickstart-9 end
This will print:
.. code-block::
to_string representation of value of f:
(lambda ((@bzla.var_74 (_ BitVec 8))) (lambda ((@bzla.var_75 (_ BitVec 4))) (ite (and (= @bzla.var_74 #b10011111) (= @bzla.var_75 #b0011)) #b11111111 #b00000000)))
to_string representation of value of a:
(store ((as const (Array (_ BitVec 8) (_ BitVec 8))) #b00000000) #b10011111 #b11111111)
Note that the string representation of values representable as simple type
(bit-vectors, boolean, floating-point, rounding mode) are given as pure
value string (in the given number format) via
:cpp:func:`bitwuzla_term_value_get_str()`.
Their string representation retrieved via :cpp:func:`bitwuzla_term_to_string()`,
however, is given in SMT-LIB2 format. For example,
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-10 start
:end-before: docs-c-quickstart-10 end
This will print:
.. code-block::
to_string representation of value of x: #b10011111
to_string representation of value of y: #b11111111
It is also possible to query the model value of expressions that do not
occur in the input formula:
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-11 start
:end-before: docs-c-quickstart-11 end
This will print:
.. code-block::
value of v = x * x: 11000001
Finally, we delete the Bitwuzla, BitwuzlaOptions, and BitwuzlaTermManager
instances.
.. literalinclude:: ../../examples/c/quickstart.c
:language: c
:start-after: docs-c-quickstart-12 start
:end-before: docs-c-quickstart-12 end
.. note::
Make sure to delete the term manager last since the solver instance relies on
it.
Further, when the term manager is deleted, it will automatically release all
created sorts and terms. For a more fine-grained control on when sorts and
terms are released you can use
:cpp:func:`bitwuzla_sort_copy()`,
:cpp:func:`bitwuzla_sort_release()`,
:cpp:func:`bitwuzla_term_copy()`,
:cpp:func:`bitwuzla_term_release()`, and
:cpp:func:`bitwuzla_term_manager_release()`.
----
Examples
--------
| All examples can be found in directory `examples <https://github.com/bitwuzla/bitwuzla/tree/main/examples>`_.
| For instructions on how to build these examples, see `examples/README.md <https://github.com/bitwuzla/bitwuzla/tree/main/examples/README.md>`_.
Quickstart Example
^^^^^^^^^^^^^^^^^^^
| The example used in the :ref:`c/api:quickstart` guide.
| The SMT-LIB input for this example can be found at `examples/smt2/quickstart.smt2 <https://github.com/bitwuzla/bitwuzla/tree/main/examples/smt2/quickstart.smt2>`_.
| The source code for this example can be found at `examples/c/quickstart.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/quickstart.c>`_.
.. tabbed-examples::
../../examples/c/quickstart.c
../../examples/cpp/quickstart.cpp
../../examples/python/quickstart.py
../../examples/smt2/quickstart.smt2
Options Example
^^^^^^^^^^^^^^^
| An example for how to set and get options.
| The SMT-LIB input for this example can be found at `examples/smt2/options.smt2 <https://github.com/bitwuzla/bitwuzla/tree/main/examples/smt2/options.smt2>`_.
| The source code for this example can be found at `examples/c/options.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/options.c>`_.
.. tabbed-examples::
../../examples/c/options.c
../../examples/cpp/options.cpp
../../examples/python/options.py
../../examples/smt2/options.smt2
Option Info Example
^^^^^^^^^^^^^^^^^^^
| An example for how to get information about options via :cpp:struct:`BitwuzlaOptionInfo`.
| The source code for this example can be found at `examples/c/option_info.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/option_info.c>`_.
.. tabbed-examples::
../../examples/c/option_info.c
../../examples/cpp/option_info.cpp
../../examples/python/option_info.py
Incremental Example with push and pop
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| An incremental example with :code:`push` and :code:`pop`.
| The SMT-LIB input for this example can be found at `examples/smt2/pushpop.smt2 <https://github.com/bitwuzla/bitwuzla/tree/main/examples/smt2/pushpop.smt2>`_.
| The source code for this example can be found at `examples/c/pushpop.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/pushpop.c>`_.
.. tabbed-examples::
../../examples/c/pushpop.c
../../examples/cpp/pushpop.cpp
../../examples/python/pushpop.py
../../examples/smt2/pushpop.smt2
Incremental Example with check-sat-assuming
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| This example shows how to implement the example above with :code:`check-sat-assuming`.
| The SMT-LIB input for this example can be found at `examples/smt2/checksatassuming.smt2 <https://github.com/bitwuzla/bitwuzla/tree/main/examples/smt2/checksatassuming.smt2>`_.
| The source code for this example can be found at `examples/c/checksatassuming.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/checksatassuming.c>`_.
.. tabbed-examples::
../../examples/c/checksatassuming.c
../../examples/cpp/checksatassuming.cpp
../../examples/python/checksatassuming.py
../../examples/smt2/checksatassuming.smt2
Unsat Core Example
^^^^^^^^^^^^^^^^^^
This example shows how to extract an unsat core.
It creates bit-vector and floating-point terms and further illustrates how to
create lambda terms (:code:`define-fun`).
| The SMT-LIB input for this example can be found at `examples/smt2/unsatcore.smt2 <https://github.com/bitwuzla/bitwuzla/tree/main/examples/smt2/unsatcore.smt2>`_.
| The source code for this example can be found at `examples/c/unsatcore.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/unsatcore.c>`_.
.. tabbed-examples::
../../examples/c/unsatcore.c
../../examples/cpp/unsatcore.cpp
../../examples/python/unsatcore.py
../../examples/smt2/unsatcore.smt2
Unsat Assumptions Example
^^^^^^^^^^^^^^^^^^^^^^^^^
| This example shows how to implement the example above with :code:`get-unsat-assumptions`.
| The SMT-LIB input for this example can be found at `examples/smt2/unsatassumptions.smt2 <https://github.com/bitwuzla/bitwuzla/tree/main/examples/smt2/unsatassumptions.smt2>`_.
| The source code for this example can be found at `examples/c/unsatassumptions.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/unsatassumptions.c>`_.
.. tabbed-examples::
../../examples/c/unsatassumptions.c
../../examples/cpp/unsatassumptions.cpp
../../examples/python/unsatassumptions.py
../../examples/smt2/unsatassumptions.smt2
Reset Example
^^^^^^^^^^^^^
| This example shows how to reset the solver instance (SMT-LIB command :code:`reset`).
| The SMT-LIB input for this example can be found at `examples/smt2/reset.smt2 <https://github.com/bitwuzla/bitwuzla/tree/main/examples/smt2/reset.smt2>`_.
| The source code for this example can be found at `examples/c/reset.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/reset.c>`_.
.. tabbed-examples::
../../examples/c/reset.c
../../examples/cpp/reset.cpp
../../examples/python/reset.py
../../examples/smt2/reset.smt2
Reset Assertions Example
^^^^^^^^^^^^^^^^^^^^^^^^
| This example shows how to reset the currently asserted formulas of a solver instance (SMT-LIB command :code:`reset-assertions`).
| The SMT-LIB input for this example can be found at `examples/smt2/reset_assertions.smt2 <https://github.com/bitwuzla/bitwuzla/tree/main/examples/smt2/reset_assertions.smt2>`_.
| The source code for this example can be found at `examples/c/reset_assertions.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/reset_assertions.c>`_.
.. tabbed-examples::
../../examples/c/reset_assertions.c
../../examples/cpp/reset_assertions.cpp
../../examples/python/reset_assertions.py
../../examples/smt2/reset_assertions.smt2
Parsing Example
^^^^^^^^^^^^^^^
| This example shows how to parse an input file via the API.
| The source code for this example can be found at `examples/c/parse.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/parse.c>`_.
.. tabbed-examples::
../../examples/c/parse.c
../../examples/cpp/parse.cpp
../../examples/python/parse.py
Printing Example
^^^^^^^^^^^^^^^^
| This example shows how to print sorts, terms and formulas via the API.
| The source code for this example can be found at `examples/c/print.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/print.c>`_.
.. tabbed-examples::
../../examples/c/print.c
../../examples/cpp/print.cpp
../../examples/python/print.py
Termination Callback Example
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| This example shows how to configure a termination callback.
| The source code for this example can be found at `examples/c/terminator.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/terminator.c>`_.
.. tabbed-examples::
../../examples/c/terminator.c
../../examples/cpp/terminator.cpp
../../examples/python/terminator.py
Manual Reference Counting of Sort and Terms Example
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| This example shows how to use the manual reference counting functions for
| sorts and terms.
| The source code for this example can be found at `examples/c/manual_reference_counting.c <https://github.com/bitwuzla/bitwuzla/tree/main/examples/c/manual_reference_counting.c>`_.
.. tabbed-examples::
../../examples/c/manual_reference_counting.c
|