Skip to content

Commit f90439f

Browse files
waywardmonkeysNikolajBjorner
authored andcommitted
docs: Fix a number of identifier formatting issues.
1 parent 077f518 commit f90439f

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

src/api/z3_api.h

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4568,7 +4568,7 @@ extern "C" {
45684568
Z3_sort Z3_API Z3_get_sort(Z3_context c, Z3_ast a);
45694569

45704570
/**
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.
45724572
45734573
def_API('Z3_is_well_sorted', BOOL, (_in(CONTEXT), _in(AST)))
45744574
*/
@@ -4599,7 +4599,7 @@ extern "C" {
45994599
bool Z3_API Z3_is_numeral_ast(Z3_context c, Z3_ast a);
46004600

46014601
/**
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.
46034603
46044604
def_API('Z3_is_algebraic_number', BOOL, (_in(CONTEXT), _in(AST)))
46054605
*/
@@ -5286,14 +5286,14 @@ extern "C" {
52865286
void Z3_API Z3_func_interp_add_entry(Z3_context c, Z3_func_interp fi, Z3_ast_vector args, Z3_ast value);
52875287

52885288
/**
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.
52905290
52915291
def_API('Z3_func_entry_inc_ref', VOID, (_in(CONTEXT), _in(FUNC_ENTRY)))
52925292
*/
52935293
void Z3_API Z3_func_entry_inc_ref(Z3_context c, Z3_func_entry e);
52945294

52955295
/**
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.
52975297
52985298
def_API('Z3_func_entry_dec_ref', VOID, (_in(CONTEXT), _in(FUNC_ENTRY)))
52995299
*/
@@ -5302,7 +5302,7 @@ extern "C" {
53025302
/**
53035303
\brief Return the value of this point.
53045304
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
53065306
a function interpretation.
53075307
53085308
\sa Z3_func_interp_get_entry
@@ -5312,7 +5312,7 @@ extern "C" {
53125312
Z3_ast Z3_API Z3_func_entry_get_value(Z3_context c, Z3_func_entry e);
53135313

53145314
/**
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.
53165316
53175317
\sa Z3_func_interp_get_entry
53185318
@@ -5321,7 +5321,7 @@ extern "C" {
53215321
unsigned Z3_API Z3_func_entry_get_num_args(Z3_context c, Z3_func_entry e);
53225322

53235323
/**
5324-
\brief Return an argument of a Z3_func_entry object.
5324+
\brief Return an argument of a \c Z3_func_entry object.
53255325
53265326
\pre i < Z3_func_entry_get_num_args(c, e)
53275327
@@ -5377,11 +5377,11 @@ extern "C" {
53775377
53785378
The default mode for pretty printing AST nodes is to produce
53795379
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.
53815381
To print shared common subexpressions only once,
5382-
use the Z3_PRINT_LOW_LEVEL mode.
5382+
use the \c Z3_PRINT_LOW_LEVEL mode.
53835383
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.
53855385
53865386
\sa Z3_ast_to_string
53875387
\sa Z3_pattern_to_string
@@ -5525,7 +5525,7 @@ extern "C" {
55255525
/**
55265526
\brief Register a Z3 error handler.
55275527
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
55295529
it is not used correctly. An error handler can be registered
55305530
and will be called in this case. To disable the use of the
55315531
error handler, simply register with \c h=NULL.
@@ -5616,14 +5616,14 @@ extern "C" {
56165616
of formulas, that can be solved and/or transformed using
56175617
tactics and solvers.
56185618
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.
56205620
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.
56225622
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.
56255625
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
56275627
created using #Z3_mk_context instead of #Z3_mk_context_rc.
56285628
56295629
def_API('Z3_mk_goal', GOAL, (_in(CONTEXT), _in(BOOL), _in(BOOL), _in(BOOL)))
@@ -5668,7 +5668,7 @@ extern "C" {
56685668
void Z3_API Z3_goal_assert(Z3_context c, Z3_goal g, Z3_ast a);
56695669

56705670
/**
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.
56725672
56735673
def_API('Z3_goal_inconsistent', BOOL, (_in(CONTEXT), _in(GOAL)))
56745674
*/
@@ -5712,14 +5712,14 @@ extern "C" {
57125712
unsigned Z3_API Z3_goal_num_exprs(Z3_context c, Z3_goal g);
57135713

57145714
/**
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.
57165716
57175717
def_API('Z3_goal_is_decided_sat', BOOL, (_in(CONTEXT), _in(GOAL)))
57185718
*/
57195719
bool Z3_API Z3_goal_is_decided_sat(Z3_context c, Z3_goal g);
57205720

57215721
/**
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.
57235723
57245724
def_API('Z3_goal_is_decided_unsat', BOOL, (_in(CONTEXT), _in(GOAL)))
57255725
*/
@@ -5817,7 +5817,7 @@ extern "C" {
58175817

58185818
/**
58195819
\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.
58215821
58225822
def_API('Z3_tactic_and_then', TACTIC, (_in(CONTEXT), _in(TACTIC), _in(TACTIC)))
58235823
*/
@@ -5840,7 +5840,7 @@ extern "C" {
58405840

58415841
/**
58425842
\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.
58445844
58455845
def_API('Z3_tactic_par_and_then', TACTIC, (_in(CONTEXT), _in(TACTIC), _in(TACTIC)))
58465846
*/
@@ -6017,7 +6017,7 @@ extern "C" {
60176017
unsigned Z3_API Z3_get_num_probes(Z3_context c);
60186018

60196019
/**
6020-
\brief Return the name of the i probe.
6020+
\brief Return the name of the \c i probe.
60216021
60226022
\pre i < Z3_get_num_probes(c)
60236023

0 commit comments

Comments
 (0)