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 @@ -325,13 +325,13 @@ Aig::Aig(Cell *cell)
325325 int A = mk.inport (ID::A, i);
326326 int B = mk.inport (ID::B, i);
327327 int Y = cell->type .in (ID ($and ), ID ($_AND_)) ? mk.and_gate (A, B) :
328- cell->type .in (ID ($_NAND_)) ? mk.nand_gate (A, B) :
328+ cell->type .in (ID ($_NAND_)) ? mk.nand_gate (A, B) :
329329 cell->type .in (ID ($or ), ID ($_OR_)) ? mk.or_gate (A, B) :
330- cell->type .in (ID ($_NOR_)) ? mk.nor_gate (A, B) :
330+ cell->type .in (ID ($_NOR_)) ? mk.nor_gate (A, B) :
331331 cell->type .in (ID ($xor ), ID ($_XOR_)) ? mk.xor_gate (A, B) :
332332 cell->type .in (ID ($xnor), ID ($_XNOR_)) ? mk.xnor_gate (A, B) :
333- cell->type .in (ID ($_ANDNOT_)) ? mk.andnot_gate (A, B) :
334- cell->type .in (ID ($_ORNOT_)) ? mk.ornot_gate (A, B) : -1 ;
333+ cell->type .in (ID ($_ANDNOT_)) ? mk.andnot_gate (A, B) :
334+ cell->type .in (ID ($_ORNOT_)) ? mk.ornot_gate (A, B) : -1 ;
335335 mk.outport (Y, ID::Y, i);
336336 }
337337 goto optimize;
You can’t perform that action at this time.
0 commit comments