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:
parent
3f7453f5c5
commit
757b7c66ef
7 changed files with 40 additions and 40 deletions
|
@ -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. */
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue