3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 02:16:40 +00:00

Remove unnecessary value parameter copies.

This commit is contained in:
Bruce Mitchener 2018-02-06 14:29:54 +07:00
parent 3f7453f5c5
commit 757b7c66ef
7 changed files with 40 additions and 40 deletions

View file

@ -725,7 +725,7 @@ namespace Duality {
/** Determines the value in the counterexample of a symbol occuring in the transformer formula of
* a given edge. */
Term Eval(Edge *e, Term t);
Term Eval(Edge *e, const Term& t);
/** Return the fact derived at node p in a counterexample. */

View file

@ -1494,7 +1494,7 @@ namespace Duality {
/** Determines the value in the counterexample of a symbol occuring in the transformer formula of
* a given edge. */
RPFP::Term RPFP::Eval(Edge *e, Term t)
RPFP::Term RPFP::Eval(Edge *e, const Term& t)
{
Term tl = Localize(e, t);
return dualModel.eval(tl);