mirror of
https://github.com/Z3Prover/z3
synced 2025-06-29 09:28:45 +00:00
fix typos in comments
This commit is contained in:
parent
a1b036a4fa
commit
22a76e4985
2 changed files with 3 additions and 3 deletions
|
@ -437,7 +437,7 @@ namespace seq {
|
||||||
expr_ref t_eq_empty = mk_eq_empty(t);
|
expr_ref t_eq_empty = mk_eq_empty(t);
|
||||||
|
|
||||||
// |t| = 0 => |s| = 0 or indexof(t,s,offset) = -1
|
// |t| = 0 => |s| = 0 or indexof(t,s,offset) = -1
|
||||||
// ~contains(t,s) <=> indexof(t,s,offset) = -1
|
// ~contains(t,s) => indexof(t,s,offset) = -1
|
||||||
|
|
||||||
add_clause(cnt, i_eq_m1);
|
add_clause(cnt, i_eq_m1);
|
||||||
add_clause(~t_eq_empty, s_eq_empty, i_eq_m1);
|
add_clause(~t_eq_empty, s_eq_empty, i_eq_m1);
|
||||||
|
@ -489,7 +489,7 @@ namespace seq {
|
||||||
// 0 <= offset & offset < len(t) => len(x) = offset
|
// 0 <= offset & offset < len(t) => len(x) = offset
|
||||||
// 0 <= offset & offset < len(t) & indexof(y,s,0) = -1 => -1 = i
|
// 0 <= offset & offset < len(t) & indexof(y,s,0) = -1 => -1 = i
|
||||||
// 0 <= offset & offset < len(t) & indexof(y,s,0) >= 0 =>
|
// 0 <= offset & offset < len(t) & indexof(y,s,0) >= 0 =>
|
||||||
// -1 = indexof(y,s,0) + offset = indexof(t, s, offset)
|
// indexof(y,s,0) + offset = indexof(t, s, offset)
|
||||||
|
|
||||||
add_clause(~offset_ge_0, offset_ge_len, mk_seq_eq(t, mk_concat(x, y)));
|
add_clause(~offset_ge_0, offset_ge_len, mk_seq_eq(t, mk_concat(x, y)));
|
||||||
add_clause(~offset_ge_0, offset_ge_len, mk_eq(mk_len(x), offset));
|
add_clause(~offset_ge_0, offset_ge_len, mk_eq(mk_len(x), offset));
|
||||||
|
|
|
@ -133,7 +133,7 @@ namespace polynomial {
|
||||||
/**
|
/**
|
||||||
\brief Number of distinct factors (not counting multiplicities).
|
\brief Number of distinct factors (not counting multiplicities).
|
||||||
*/
|
*/
|
||||||
size_t distinct_factors() const { return m_factors.size(); }
|
unsigned distinct_factors() const { return m_factors.size(); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\brief Number of distinct factors (counting multiplicities).
|
\brief Number of distinct factors (counting multiplicities).
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue