mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-18 20:03:39 +00:00
Stab in the dark with aig_map from dict -> std::map
This commit is contained in:
parent
21fa8972f3
commit
70ee10b650
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ struct XAigerWriter
|
||||||
vector<int> aig_outputs;
|
vector<int> aig_outputs;
|
||||||
int aig_m = 0, aig_i = 0, aig_l = 0, aig_o = 0, aig_a = 0;
|
int aig_m = 0, aig_i = 0, aig_l = 0, aig_o = 0, aig_a = 0;
|
||||||
|
|
||||||
dict<SigBit, int> aig_map;
|
std::map<SigBit, int> aig_map;
|
||||||
dict<SigBit, int> ordered_outputs;
|
dict<SigBit, int> ordered_outputs;
|
||||||
|
|
||||||
vector<Cell*> box_list;
|
vector<Cell*> box_list;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue