read_aiger to not do -purge for clean

This commit is contained in:
Eddie Hung 2019-02-20 17:33:04 -08:00
parent 32853b1f8d
commit 9e299a0908
1 changed files with 1 additions and 1 deletions

View File

@ -458,7 +458,7 @@ void AigerReader::parse_xaiger()
module->fixup_ports();
design->add(module);
Pass::call(design, "clean -purge");
Pass::call(design, "clean");
}
void AigerReader::parse_aiger_ascii()