3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

Fix some spelling errors (mostly in comments).

This commit is contained in:
Florian Pigorsch 2018-10-20 17:07:41 +02:00
parent 880ce12e2d
commit 326bf401b9
121 changed files with 205 additions and 205 deletions

View file

@ -197,7 +197,7 @@ struct cofactor_elim_term_ite::imp {
switch (arg->get_kind()) {
case AST_VAR:
case AST_QUANTIFIER:
// ingore quantifiers
// ignore quantifiers
break;
case AST_APP:
if (to_app(arg)->get_num_args() > 0) {
@ -264,7 +264,7 @@ struct cofactor_elim_term_ite::imp {
switch (arg->get_kind()) {
case AST_VAR:
case AST_QUANTIFIER:
// ingore quantifiers
// ignore quantifiers
break;
case AST_APP:
if (to_app(arg)->get_num_args() > 0) {

View file

@ -273,8 +273,8 @@ private:
}
/**
\brief decompose large sums into smaller sums by intoducing
auxilary variables.
\brief decompose large sums into smaller sums by introducing
auxiliary variables.
*/
void decompose(goal_ref const& g) {
expr_ref fml1(m), fml2(m);