Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ajreynol committed Jan 14, 2025
1 parent b004983 commit 525750e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/rewriter/basic_rewrite_rcons.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1597,18 +1597,18 @@ bool BasicRewriteRCons::ensureProofMacroLambdaAppElimShadow(CDProof* cdp,
"MacroLambdaAppElimShadow",
nullptr,
true);
size_t i=0;
while (i<matchConds.size())
size_t i = 0;
while (i < matchConds.size())
{
Assert(mc.getKind() == Kind::EQUAL);
Node mc = matchConds[i];
i++;
if (mc[0].getKind()==mc[1].getKind() && mc[0].isClosure())
if (mc[0].getKind() == mc[1].getKind() && mc[0].isClosure())
{
Subs s;
for (size_t v=0, nvars=mc[0][0].getNumChildren(); v<nvars; v++)
for (size_t v = 0, nvars = mc[0][0].getNumChildren(); v < nvars; v++)
{
if (mc[0][0][v]!=mc[1][0][v])
if (mc[0][0][v] != mc[1][0][v])
{
s.add(mc[0][0][v], mc[1][0][v]);
}
Expand Down

0 comments on commit 525750e

Please sign in to comment.