mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 02:45:51 +00:00
Fix typos.
This commit is contained in:
parent
54ba25175c
commit
ae8027e594
23 changed files with 67 additions and 67 deletions
|
@ -32,7 +32,7 @@ namespace datalog {
|
|||
predicates.insert(I->first);
|
||||
}
|
||||
|
||||
// reserve pred id = 0 for initalization purposes
|
||||
// reserve pred id = 0 for initialization purposes
|
||||
unsigned num_preds = (unsigned)predicates.size() + 1;
|
||||
|
||||
// poor's man round-up log2
|
||||
|
|
|
@ -67,7 +67,7 @@ namespace datalog {
|
|||
}
|
||||
|
||||
relation_base * sieve_relation::complement(func_decl* p) const {
|
||||
//this is not precisely a complement, because we still treat the ignored collumns as
|
||||
//this is not precisely a complement, because we still treat the ignored columns as
|
||||
//full, but it should give reasonable results inside the product relation
|
||||
relation_base * new_inner = get_inner().complement(p);
|
||||
return get_plugin().mk_from_inner(get_signature(), m_inner_cols.c_ptr(), new_inner);
|
||||
|
|
|
@ -424,7 +424,7 @@ namespace datalog {
|
|||
|
||||
/**
|
||||
\c array \c removed_cols contains column indexes to be removed in ascending order and
|
||||
is terminated by a number greated than the highest column index of a join the the two tables.
|
||||
is terminated by a number greater than the highest column index of a join the two tables.
|
||||
This is to simplify the traversal of the array when building facts.
|
||||
*/
|
||||
static void concatenate_rows(const column_layout & layout1, const column_layout & layout2,
|
||||
|
@ -436,7 +436,7 @@ namespace datalog {
|
|||
columns from t2 using indexing.
|
||||
|
||||
\c array \c removed_cols contains column indexes to be removed in ascending order and
|
||||
is terminated by a number greated than the highest column index of a join the the two tables.
|
||||
is terminated by a number greater than the highest column index of a join the two tables.
|
||||
This is to simplify the traversal of the array when building facts.
|
||||
|
||||
\c tables_swapped value means that the resulting facts should contain facts from t2 first,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue