3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-23 14:23:41 +00:00

AigMaker refactoring

This commit is contained in:
Clifford Wolf 2015-06-10 23:00:12 +02:00
parent e534881794
commit 1ae360cf72
4 changed files with 165 additions and 90 deletions

View file

@ -32,6 +32,7 @@ struct AigNode
int left_parent, right_parent;
vector<pair<IdString, int>> outports;
AigNode();
bool operator==(const AigNode &other) const;
unsigned int hash() const;
};