1
0
mirror of synced 2026-04-29 13:23:49 +00:00

Use pool instead of std::set for determinism

This commit is contained in:
Eddie Hung
2019-12-01 23:26:17 -08:00
parent b3a66dff7c
commit a265a84632

View File

@@ -42,7 +42,7 @@ struct SubmodWorker
struct SubModule
{
std::string name, full_name;
std::set<RTLIL::Cell*> cells;
pool<RTLIL::Cell*> cells;
};
std::map<std::string, SubModule> submodules;