Skip to content

Commit

Permalink
Temporary revert back to no quotationmarks in arguments of rewrite ru…
Browse files Browse the repository at this point in the history
…les for easier development in Isabelle
  • Loading branch information
Lachnitt committed Feb 16, 2024
1 parent c6e809f commit c38a5db
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/proof/alethe/alethe_post_processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,8 @@ bool AletheProofPostprocessCallback::update(Node res,
if (rewriter::getDslProofRule(args[0], di))
{
std::stringstream ss;
ss << "\"" << di << "\"";
//ss << "\"" << di << "\"";
ss << di;
rule = nm->mkRawSymbol(ss.str(), nm->sExprType());
}
else
Expand Down Expand Up @@ -437,7 +438,8 @@ bool AletheProofPostprocessCallback::update(Node res,
res,
nm->mkNode(Kind::SEXPR, d_cl, res),
children,
{nm->mkRawSymbol("\"arith-poly-norm\"", nm->sExprType())},
{nm->mkRawSymbol("arith-poly-norm", nm->sExprType())},
//{nm->mkRawSymbol("\"arith-poly-norm\"", nm->sExprType())},
*cdp);
}
case ProofRule::EVALUATE:
Expand All @@ -446,7 +448,8 @@ bool AletheProofPostprocessCallback::update(Node res,
res,
nm->mkNode(Kind::SEXPR, d_cl, res),
children,
{nm->mkRawSymbol("\"evaluate\"", nm->sExprType())},
{nm->mkRawSymbol("evaluate", nm->sExprType())},
//{nm->mkRawSymbol("\"evaluate\"", nm->sExprType())},
*cdp);
}
case ProofRule::TRUST_THEORY_REWRITE:
Expand Down

0 comments on commit c38a5db

Please sign in to comment.