@@ -560,7 +560,7 @@ void SMTChecker::checkCondition(
560
560
}
561
561
smt::CheckResult result;
562
562
vector<string> values;
563
- tie (result, values) = checkSatisifableAndGenerateModel (expressionsToEvaluate);
563
+ tie (result, values) = checkSatisfiableAndGenerateModel (expressionsToEvaluate);
564
564
565
565
string conditionalComment;
566
566
if (m_conditionalExecutionHappened)
@@ -607,12 +607,12 @@ void SMTChecker::checkBooleanNotConstant(Expression const& _condition, string co
607
607
608
608
m_interface->push ();
609
609
addPathConjoinedExpression (expr (_condition));
610
- auto positiveResult = checkSatisifable ();
610
+ auto positiveResult = checkSatisfiable ();
611
611
m_interface->pop ();
612
612
613
613
m_interface->push ();
614
614
addPathConjoinedExpression (!expr (_condition));
615
- auto negatedResult = checkSatisifable ();
615
+ auto negatedResult = checkSatisfiable ();
616
616
m_interface->pop ();
617
617
618
618
if (positiveResult == smt::CheckResult::ERROR || negatedResult == smt::CheckResult::ERROR)
@@ -642,7 +642,7 @@ void SMTChecker::checkBooleanNotConstant(Expression const& _condition, string co
642
642
}
643
643
644
644
pair<smt::CheckResult, vector<string>>
645
- SMTChecker::checkSatisifableAndGenerateModel (vector<smt::Expression> const & _expressionsToEvaluate)
645
+ SMTChecker::checkSatisfiableAndGenerateModel (vector<smt::Expression> const & _expressionsToEvaluate)
646
646
{
647
647
smt::CheckResult result;
648
648
vector<string> values;
@@ -672,9 +672,9 @@ SMTChecker::checkSatisifableAndGenerateModel(vector<smt::Expression> const& _exp
672
672
return make_pair (result, values);
673
673
}
674
674
675
- smt::CheckResult SMTChecker::checkSatisifable ()
675
+ smt::CheckResult SMTChecker::checkSatisfiable ()
676
676
{
677
- return checkSatisifableAndGenerateModel ({}).first ;
677
+ return checkSatisfiableAndGenerateModel ({}).first ;
678
678
}
679
679
680
680
void SMTChecker::initializeLocalVariables (FunctionDefinition const & _function)
0 commit comments