cellaigs: remove some dead code

This commit is contained in:
Lofty 2026-03-31 09:37:18 +01:00
parent 240439bdb0
commit 162eeea29a
1 changed files with 1 additions and 8 deletions

View File

@ -66,14 +66,7 @@ struct AigMaker
Cell *cell;
idict<AigNode> aig_indices;
int the_true_node;
int the_false_node;
AigMaker(Aig *aig, Cell *cell) : aig(aig), cell(cell)
{
the_true_node = -1;
the_false_node = -1;
}
AigMaker(Aig *aig, Cell *cell) : aig(aig), cell(cell) {}
int node2index(const AigNode &node)
{