2021-04-09 15:28:18 -07:00
|
|
|
Solver
|
|
|
|
|
======
|
|
|
|
|
|
2023-09-11 09:31:57 -07:00
|
|
|
This class represents a cvc5 solver instance.
|
|
|
|
|
|
|
|
|
|
:cpp:class:`Terms <cvc5::Term>`, :cpp:class:`Sorts <cvc5::Sort>` and
|
|
|
|
|
:cpp:class:`Ops <cvc5::Op>` are not tied to a :cpp:class:`cvc5::Solver`
|
2024-03-08 11:39:13 -08:00
|
|
|
but associated with a :cpp:class:`cvc5::TermManager` instance, which can be
|
|
|
|
|
shared between solver instances.
|
2023-09-11 09:31:57 -07:00
|
|
|
|
|
|
|
|
Solver options are configured via :cpp:func:`cvc5::Solver::setOption()`
|
|
|
|
|
and queried via :cpp:func:`cvc5::Solver::getOption()`
|
2024-07-12 11:05:13 -07:00
|
|
|
(for more information on configuration options, see :doc:`../../../options`).
|
2023-09-11 09:31:57 -07:00
|
|
|
Information about a specific option can be retrieved via
|
|
|
|
|
:cpp:func:`cvc5::getOptionInfo()` (see :doc:`optioninfo`).
|
|
|
|
|
|
|
|
|
|
----
|
|
|
|
|
|
2022-03-30 19:30:21 -07:00
|
|
|
.. doxygenclass:: cvc5::Solver
|
2021-04-09 15:28:18 -07:00
|
|
|
:project: cvc5
|
|
|
|
|
:members:
|
|
|
|
|
:undoc-members:
|