File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -324,13 +324,13 @@ Aig::Aig(Cell *cell)
324324 int A = mk.inport (ID::A, i);
325325 int B = mk.inport (ID::B, i);
326326 int Y = cell->type .in (ID ($and ), ID ($_AND_)) ? mk.and_gate (A, B) :
327- cell->type .in (ID ($_NAND_)) ? mk.nand_gate (A, B) :
327+ cell->type .in (ID ($_NAND_)) ? mk.nand_gate (A, B) :
328328 cell->type .in (ID ($or ), ID ($_OR_)) ? mk.or_gate (A, B) :
329- cell->type .in (ID ($_NOR_)) ? mk.nor_gate (A, B) :
329+ cell->type .in (ID ($_NOR_)) ? mk.nor_gate (A, B) :
330330 cell->type .in (ID ($xor ), ID ($_XOR_)) ? mk.xor_gate (A, B) :
331331 cell->type .in (ID ($xnor), ID ($_XNOR_)) ? mk.xnor_gate (A, B) :
332- cell->type .in (ID ($_ANDNOT_)) ? mk.andnot_gate (A, B) :
333- cell->type .in (ID ($_ORNOT_)) ? mk.ornot_gate (A, B) : -1 ;
332+ cell->type .in (ID ($_ANDNOT_)) ? mk.andnot_gate (A, B) :
333+ cell->type .in (ID ($_ORNOT_)) ? mk.ornot_gate (A, B) : -1 ;
334334 mk.outport (Y, ID::Y, i);
335335 }
336336 goto optimize;
You can’t perform that action at this time.
0 commit comments