Skip to content

Commit 8da7c30

Browse files
author
Lukasz A.J. Wrona
committed
Constraint generator doxygen
1 parent 22d699c commit 8da7c30

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

src/solvers/refinement/string_constraint_generator.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,17 @@ class string_constraint_generatort final
4949

5050
explicit string_constraint_generatort(const infot& info);
5151

52-
// Axioms are of three kinds: universally quantified string constraint,
53-
// not contains string constraints and simple formulas.
52+
/// Axioms are of three kinds: universally quantified string constraint,
53+
/// not contains string constraints and simple formulas.
5454
const std::vector<exprt> &get_axioms() const;
5555

56-
// Boolean symbols for the results of some string functions
56+
/// Boolean symbols for the results of some string functions
5757
const std::vector<symbol_exprt> &get_boolean_symbols() const;
5858

5959
/// Symbols used in existential quantifications
6060
const std::vector<symbol_exprt> &get_index_symbols() const;
6161

62-
// Set of strings that have been created by the generator
62+
/// Set of strings that have been created by the generator
6363
const std::set<string_exprt> &get_created_strings() const;
6464

6565
exprt get_witness_of(
@@ -73,8 +73,7 @@ class string_constraint_generatort final
7373
const irep_idt &prefix, const typet &type=bool_typet());
7474
symbol_exprt fresh_univ_index(const irep_idt &prefix, const typet &type);
7575

76-
// Maps unresolved symbols to the string_exprt that was created for them
77-
76+
/// Maps unresolved symbols to the string_exprt that was created for them
7877
string_exprt add_axioms_for_refined_string(const exprt &expr);
7978

8079
exprt add_axioms_for_function_application(

src/solvers/refinement/string_refinement.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class string_refinementt final: public bv_refinementt
4242
size_t string_max_length=std::numeric_limits<size_t>::max();
4343
/// Make non-deterministic character arrays have at least one character
4444
bool string_non_empty=false;
45-
// Concretize strings after solver is finished
45+
/// Concretize strings after solver is finished
4646
bool trace=false;
4747
/// Make non-deterministic characters printable
4848
bool string_printable=false;

0 commit comments

Comments
 (0)