mirror of
https://github.com/Z3Prover/z3
synced 2026-02-19 07:04:22 +00:00
Remove copies (#8583)
This commit is contained in:
parent
0da28c6d19
commit
836a76c78a
14 changed files with 38 additions and 51 deletions
|
|
@ -201,7 +201,7 @@ struct mus::imp {
|
|||
}
|
||||
if (!min_core_valid || core.size() < min_core.size()) {
|
||||
// The current core is smallest so far, so we get fewer unknowns from it.
|
||||
min_core = core;
|
||||
min_core = std::move(core);
|
||||
min_core_valid = true;
|
||||
min_lit = lit;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue