3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

Fix typos.

This commit is contained in:
Bruce Mitchener 2022-07-31 12:44:26 +07:00 committed by Nikolaj Bjorner
parent 08165f5367
commit 1d9345c3de
13 changed files with 19 additions and 19 deletions

View file

@ -305,7 +305,7 @@ namespace datalog {
void register_predicate(func_decl * pred, bool named);
/**
Restrict reltaions to set of predicates.
Restrict relations to set of predicates.
*/
void restrict_predicates(func_decl_set const& preds);

View file

@ -35,7 +35,7 @@ namespace datalog {
// reserve pred id = 0 for initialization purposes
unsigned num_preds = (unsigned)predicates.size() + 1;
// poor's man round-up log2
// poor man's round-up log2
unsigned preds_bitsize = log2(num_preds);
if ((1U << preds_bitsize) < num_preds)
++preds_bitsize;

View file

@ -73,7 +73,7 @@ namespace datalog {
/**
Termplate class containing common infrastructure for relations and tables
Template class containing common infrastructure for relations and tables
*/
template<class Traits>
struct tr_infrastructure {
@ -881,7 +881,7 @@ namespace datalog {
public:
virtual ~table_row_pair_reduce_fn() {}
/**
\brief The function is called for pair of table rows that became duplicit due to projection.
\brief The function is called for pair of table rows that became duplicated due to projection.
The values that are in the first array after return from the function will be used for the
resulting row.

View file

@ -1230,11 +1230,11 @@ namespace datalog {
/**
An auixiliary class for functors that perform filtering. It performs the table traversal
An auxiliary class for functors that perform filtering. It performs the table traversal
and only asks for each individual row whether it should be removed.
When using this class in multiple inheritance, this class should not be inherited publicly
and should be mentioned as last. This should ensure that deteletion of the object will
and should be mentioned as last. This should ensure that deletion of the object will
go well when initiated from a pointer to the first ancestor.
*/
class relation_manager::auxiliary_table_filter_fn {