1
0
mirror of synced 2026-02-21 23:17:29 +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

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