Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ajreynol committed Jan 15, 2025
1 parent 0ec00cc commit a53c29c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/smt/expand_definitions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ Node ExpandDefs::expandDefinitions(TNode n,
theory::TheoryRewriter* tr = rr->getTheoryRewriter(tid);

Assert(tr != NULL);
Trace("expand") << "Expand definition on " << nr << " (from " << n << ")" << std::endl;
Trace("expand") << "Expand definition on " << nr << " (from " << n << ")"
<< std::endl;
Node nre = tr->expandDefinition(nr);
Trace("expand") << "...returns " << nre << std::endl;
node = nre.isNull() ? nr : nre;
Expand Down
3 changes: 2 additions & 1 deletion src/theory/datatypes/datatypes_rewriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,8 @@ Node DatatypesRewriter::expandDefinition(Node n)
{
case Kind::APPLY_SELECTOR:
{
Trace("dt-expand") << "expand selector, share sel = " << d_opts.datatypes.dtSharedSelectors << std::endl;
Trace("dt-expand") << "expand selector, share sel = "
<< d_opts.datatypes.dtSharedSelectors << std::endl;
ret = expandApplySelector(n, d_opts.datatypes.dtSharedSelectors);
Trace("dt-expand") << "...returns " << ret << std::endl;
}
Expand Down

0 comments on commit a53c29c

Please sign in to comment.