mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-06 03:10:26 +00:00
Some fixes to improve determinism
This commit is contained in:
parent
d97782b848
commit
05483619f0
5 changed files with 41 additions and 32 deletions
|
@ -30,12 +30,12 @@ struct FsmExpand
|
|||
RTLIL::Module *module;
|
||||
RTLIL::Cell *fsm_cell;
|
||||
SigMap assign_map;
|
||||
SigSet<RTLIL::Cell*> sig2driver, sig2user;
|
||||
SigSet<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> sig2driver, sig2user;
|
||||
CellTypes ct;
|
||||
|
||||
std::set<RTLIL::Cell*> merged_set;
|
||||
std::set<RTLIL::Cell*> current_set;
|
||||
std::set<RTLIL::Cell*> no_candidate_set;
|
||||
std::set<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> merged_set;
|
||||
std::set<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> current_set;
|
||||
std::set<RTLIL::Cell*, RTLIL::sort_by_name<RTLIL::Cell>> no_candidate_set;
|
||||
|
||||
bool already_optimized;
|
||||
int limit_transitions;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue