@@ -4568,7 +4568,7 @@ extern "C" {
4568
4568
Z3_sort Z3_API Z3_get_sort (Z3_context c , Z3_ast a );
4569
4569
4570
4570
/**
4571
- \brief Return true if the given expression \c t is well sorted.
4571
+ \brief Return \c true if the given expression \c t is well sorted.
4572
4572
4573
4573
def_API('Z3_is_well_sorted', BOOL, (_in(CONTEXT), _in(AST)))
4574
4574
*/
@@ -4599,7 +4599,7 @@ extern "C" {
4599
4599
bool Z3_API Z3_is_numeral_ast (Z3_context c , Z3_ast a );
4600
4600
4601
4601
/**
4602
- \brief Return true if the given AST is a real algebraic number.
4602
+ \brief Return \c true if the given AST is a real algebraic number.
4603
4603
4604
4604
def_API('Z3_is_algebraic_number', BOOL, (_in(CONTEXT), _in(AST)))
4605
4605
*/
@@ -5286,14 +5286,14 @@ extern "C" {
5286
5286
void Z3_API Z3_func_interp_add_entry (Z3_context c , Z3_func_interp fi , Z3_ast_vector args , Z3_ast value );
5287
5287
5288
5288
/**
5289
- \brief Increment the reference counter of the given Z3_func_entry object.
5289
+ \brief Increment the reference counter of the given \c Z3_func_entry object.
5290
5290
5291
5291
def_API('Z3_func_entry_inc_ref', VOID, (_in(CONTEXT), _in(FUNC_ENTRY)))
5292
5292
*/
5293
5293
void Z3_API Z3_func_entry_inc_ref (Z3_context c , Z3_func_entry e );
5294
5294
5295
5295
/**
5296
- \brief Decrement the reference counter of the given Z3_func_entry object.
5296
+ \brief Decrement the reference counter of the given \c Z3_func_entry object.
5297
5297
5298
5298
def_API('Z3_func_entry_dec_ref', VOID, (_in(CONTEXT), _in(FUNC_ENTRY)))
5299
5299
*/
@@ -5302,7 +5302,7 @@ extern "C" {
5302
5302
/**
5303
5303
\brief Return the value of this point.
5304
5304
5305
- A Z3_func_entry object represents an element in the finite map used to encode
5305
+ A \c Z3_func_entry object represents an element in the finite map used to encode
5306
5306
a function interpretation.
5307
5307
5308
5308
\sa Z3_func_interp_get_entry
@@ -5312,7 +5312,7 @@ extern "C" {
5312
5312
Z3_ast Z3_API Z3_func_entry_get_value (Z3_context c , Z3_func_entry e );
5313
5313
5314
5314
/**
5315
- \brief Return the number of arguments in a Z3_func_entry object.
5315
+ \brief Return the number of arguments in a \c Z3_func_entry object.
5316
5316
5317
5317
\sa Z3_func_interp_get_entry
5318
5318
@@ -5321,7 +5321,7 @@ extern "C" {
5321
5321
unsigned Z3_API Z3_func_entry_get_num_args (Z3_context c , Z3_func_entry e );
5322
5322
5323
5323
/**
5324
- \brief Return an argument of a Z3_func_entry object.
5324
+ \brief Return an argument of a \c Z3_func_entry object.
5325
5325
5326
5326
\pre i < Z3_func_entry_get_num_args(c, e)
5327
5327
@@ -5377,11 +5377,11 @@ extern "C" {
5377
5377
5378
5378
The default mode for pretty printing AST nodes is to produce
5379
5379
SMT-LIB style output where common subexpressions are printed
5380
- at each occurrence. The mode is called Z3_PRINT_SMTLIB_FULL.
5380
+ at each occurrence. The mode is called \c Z3_PRINT_SMTLIB_FULL.
5381
5381
To print shared common subexpressions only once,
5382
- use the Z3_PRINT_LOW_LEVEL mode.
5382
+ use the \c Z3_PRINT_LOW_LEVEL mode.
5383
5383
To print in way that conforms to SMT-LIB standards and uses let
5384
- expressions to share common sub-expressions use Z3_PRINT_SMTLIB2_COMPLIANT.
5384
+ expressions to share common sub-expressions use \c Z3_PRINT_SMTLIB2_COMPLIANT.
5385
5385
5386
5386
\sa Z3_ast_to_string
5387
5387
\sa Z3_pattern_to_string
@@ -5525,7 +5525,7 @@ extern "C" {
5525
5525
/**
5526
5526
\brief Register a Z3 error handler.
5527
5527
5528
- A call to a Z3 function may return a non Z3_OK error code, when
5528
+ A call to a Z3 function may return a non \c Z3_OK error code, when
5529
5529
it is not used correctly. An error handler can be registered
5530
5530
and will be called in this case. To disable the use of the
5531
5531
error handler, simply register with \c h=NULL.
@@ -5616,14 +5616,14 @@ extern "C" {
5616
5616
of formulas, that can be solved and/or transformed using
5617
5617
tactics and solvers.
5618
5618
5619
- If models == true, then model generation is enabled for the new goal.
5619
+ If \c models is \c true, then model generation is enabled for the new goal.
5620
5620
5621
- If unsat_cores == true, then unsat core generation is enabled for the new goal.
5621
+ If \c unsat_cores is \c true, then unsat core generation is enabled for the new goal.
5622
5622
5623
- If proofs == true, then proof generation is enabled for the new goal. Remark, the
5624
- Z3 context c must have been created with proof generation support.
5623
+ If \c proofs is \c true, then proof generation is enabled for the new goal. Remark, the
5624
+ Z3 context \c c must have been created with proof generation support.
5625
5625
5626
- \remark Reference counting must be used to manage goals, even when the Z3_context was
5626
+ \remark Reference counting must be used to manage goals, even when the \c Z3_context was
5627
5627
created using #Z3_mk_context instead of #Z3_mk_context_rc.
5628
5628
5629
5629
def_API('Z3_mk_goal', GOAL, (_in(CONTEXT), _in(BOOL), _in(BOOL), _in(BOOL)))
@@ -5668,7 +5668,7 @@ extern "C" {
5668
5668
void Z3_API Z3_goal_assert (Z3_context c , Z3_goal g , Z3_ast a );
5669
5669
5670
5670
/**
5671
- \brief Return true if the given goal contains the formula \c false.
5671
+ \brief Return \c true if the given goal contains the formula \c false.
5672
5672
5673
5673
def_API('Z3_goal_inconsistent', BOOL, (_in(CONTEXT), _in(GOAL)))
5674
5674
*/
@@ -5712,14 +5712,14 @@ extern "C" {
5712
5712
unsigned Z3_API Z3_goal_num_exprs (Z3_context c , Z3_goal g );
5713
5713
5714
5714
/**
5715
- \brief Return true if the goal is empty, and it is precise or the product of a under approximation.
5715
+ \brief Return \c true if the goal is empty, and it is precise or the product of a under approximation.
5716
5716
5717
5717
def_API('Z3_goal_is_decided_sat', BOOL, (_in(CONTEXT), _in(GOAL)))
5718
5718
*/
5719
5719
bool Z3_API Z3_goal_is_decided_sat (Z3_context c , Z3_goal g );
5720
5720
5721
5721
/**
5722
- \brief Return true if the goal contains false, and it is precise or the product of an over approximation.
5722
+ \brief Return \c true if the goal contains false, and it is precise or the product of an over approximation.
5723
5723
5724
5724
def_API('Z3_goal_is_decided_unsat', BOOL, (_in(CONTEXT), _in(GOAL)))
5725
5725
*/
@@ -5817,7 +5817,7 @@ extern "C" {
5817
5817
5818
5818
/**
5819
5819
\brief Return a tactic that applies \c t1 to a given goal and \c t2
5820
- to every subgoal produced by t1.
5820
+ to every subgoal produced by \c t1.
5821
5821
5822
5822
def_API('Z3_tactic_and_then', TACTIC, (_in(CONTEXT), _in(TACTIC), _in(TACTIC)))
5823
5823
*/
@@ -5840,7 +5840,7 @@ extern "C" {
5840
5840
5841
5841
/**
5842
5842
\brief Return a tactic that applies \c t1 to a given goal and then \c t2
5843
- to every subgoal produced by t1. The subgoals are processed in parallel.
5843
+ to every subgoal produced by \c t1. The subgoals are processed in parallel.
5844
5844
5845
5845
def_API('Z3_tactic_par_and_then', TACTIC, (_in(CONTEXT), _in(TACTIC), _in(TACTIC)))
5846
5846
*/
@@ -6017,7 +6017,7 @@ extern "C" {
6017
6017
unsigned Z3_API Z3_get_num_probes (Z3_context c );
6018
6018
6019
6019
/**
6020
- \brief Return the name of the i probe.
6020
+ \brief Return the name of the \c i probe.
6021
6021
6022
6022
\pre i < Z3_get_num_probes(c)
6023
6023
0 commit comments