3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-02-21 07:54:43 +00:00

Merge pull request #5620 from YosysHQ/lofty/abc9-verify

abc9: verify post-mapping equivalence by default
This commit is contained in:
Miodrag Milanović 2026-02-20 13:41:11 +01:00 committed by GitHub
commit 0ed7c5ad53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -248,7 +248,7 @@ void abc9_module(RTLIL::Design *design, std::string script_file, std::string exe
}
abc9_script += stringf("; &ps -l; &write -n %s/output.aig", tempdir_name);
if (design->scratchpad_get_bool("abc9.verify")) {
if (design->scratchpad_get_bool("abc9.verify", true)) {
if (dff_mode)
abc9_script += "; &verify -s";
else