Skip to content

Commit 148f0e9

Browse files
committed
Temporarily undoing recent changes to arrival/required times.
1 parent fade76f commit 148f0e9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/aig/gia/giaAiger.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -652,9 +652,9 @@ Gia_Man_t * Gia_AigerReadFromMemory( char * pContents, int nFileSize, int fGiaSi
652652
pNew->vInArrs = Vec_FltStart( nInputs );
653653
memcpy( Vec_FltArray(pNew->vInArrs), pCur, (size_t)4*nInputs ); pCur += 4*nInputs;
654654
if ( fVerbose ) printf( "Finished reading extension \"i\".\n" );
655-
if ( Vec_FltSize(pNew->vInArrs) == Gia_ManPiNum(pNew) )
656-
Vec_FltFillExtra(pNew->vInArrs, Gia_ManCiNum(pNew), 0);
657-
assert( Vec_FltSize(pNew->vInArrs) == Gia_ManCiNum(pNew) );
655+
//if ( Vec_FltSize(pNew->vInArrs) == Gia_ManPiNum(pNew) )
656+
// Vec_FltFillExtra(pNew->vInArrs, Gia_ManCiNum(pNew), 0);
657+
//assert( Vec_FltSize(pNew->vInArrs) == Gia_ManCiNum(pNew) );
658658
}
659659
else if ( *pCur == 'o' )
660660
{
@@ -663,9 +663,9 @@ Gia_Man_t * Gia_AigerReadFromMemory( char * pContents, int nFileSize, int fGiaSi
663663
pNew->vOutReqs = Vec_FltStart( nOutputs );
664664
memcpy( Vec_FltArray(pNew->vOutReqs), pCur, (size_t)4*nOutputs ); pCur += 4*nOutputs;
665665
if ( fVerbose ) printf( "Finished reading extension \"o\".\n" );
666-
if ( Vec_FltSize(pNew->vOutReqs) == Gia_ManPoNum(pNew) )
667-
Vec_FltFillExtra(pNew->vOutReqs, Gia_ManCoNum(pNew), 0);
668-
assert( Vec_FltSize(pNew->vOutReqs) == Gia_ManCoNum(pNew) );
666+
//if ( Vec_FltSize(pNew->vOutReqs) == Gia_ManPoNum(pNew) )
667+
// Vec_FltFillExtra(pNew->vOutReqs, Gia_ManCoNum(pNew), 0);
668+
//assert( Vec_FltSize(pNew->vOutReqs) == Gia_ManCoNum(pNew) );
669669
}
670670
// read equivalence classes
671671
else if ( *pCur == 'e' )

0 commit comments

Comments
 (0)