bbrReach.c 20.4 KB
Newer Older
Alan Mishchenko committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/**CFile****************************************************************

  FileName    [bbrReach.c]

  SystemName  [ABC: Logic synthesis and verification system.]

  PackageName [BDD-based reachability analysis.]

  Synopsis    [Procedures to perform reachability analysis.]

  Author      [Alan Mishchenko]
  
  Affiliation [UC Berkeley]

  Date        [Ver. 1.0. Started - June 20, 2005.]

  Revision    [$Id: bbrReach.c,v 1.00 2005/06/20 00:00:00 alanmi Exp $]

***********************************************************************/

#include "bbr.h"

23 24 25
ABC_NAMESPACE_IMPL_START


Alan Mishchenko committed
26 27 28 29
////////////////////////////////////////////////////////////////////////
///                        DECLARATIONS                              ///
////////////////////////////////////////////////////////////////////////

30
extern Abc_Cex_t * Aig_ManVerifyUsingBddsCountExample( Aig_Man_t * p, DdManager * dd, 
Alan Mishchenko committed
31 32 33
    DdNode ** pbParts, Vec_Ptr_t * vOnionRings, DdNode * bCubeFirst, 
    int iOutput, int fVerbose, int fSilent );

Alan Mishchenko committed
34 35 36 37
////////////////////////////////////////////////////////////////////////
///                     FUNCTION DEFINITIONS                         ///
////////////////////////////////////////////////////////////////////////

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
/**Function*************************************************************

  Synopsis    [This procedure sets default resynthesis parameters.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
void Bbr_ManSetDefaultParams( Saig_ParBbr_t * p )
{
    memset( p, 0, sizeof(Saig_ParBbr_t) );
    p->TimeLimit     =     0;
    p->nBddMax       = 50000;
    p->nIterMax      =  1000;
    p->fPartition    =     1;
    p->fReorder      =     1;
    p->fReorderImage =     1;
    p->fVerbose      =     0;
    p->fSilent       =     0;
    p->iFrame        =    -1;
}

Alan Mishchenko committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
/**Function********************************************************************

  Synopsis    [Performs the reordering-sensitive step of Extra_bddMove().]

  Description []

  SideEffects []

  SeeAlso     []

******************************************************************************/
DdNode * Bbr_bddComputeRangeCube( DdManager * dd, int iStart, int iStop )
{
    DdNode * bTemp, * bProd;
    int i;
    assert( iStart <= iStop );
    assert( iStart >= 0 && iStart <= dd->size );
    assert( iStop >= 0  && iStop  <= dd->size );
    bProd = (dd)->one;         Cudd_Ref( bProd );
    for ( i = iStart; i < iStop; i++ )
    {
        bProd = Cudd_bddAnd( dd, bTemp = bProd, dd->vars[i] );      Cudd_Ref( bProd );
        Cudd_RecursiveDeref( dd, bTemp ); 
    }
    Cudd_Deref( bProd );
    return bProd;
}

/**Function*************************************************************

  Synopsis    []

  Description []

  SideEffects []

  SeeAlso     []

***********************************************************************/
void Bbr_StopManager( DdManager * dd )
{
    int RetValue;
    // check for remaining references in the package
    RetValue = Cudd_CheckZeroRef( dd );
    if ( RetValue > 0 )
        printf( "\nThe number of referenced nodes = %d\n\n", RetValue );
//  Cudd_PrintInfo( dd, stdout );
    Cudd_Quit( dd );
}

/**Function*************************************************************

  Synopsis    [Computes the initial state and sets up the variable map.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
DdNode * Aig_ManInitStateVarMap( DdManager * dd, Aig_Man_t * p, int fVerbose )
{
    DdNode ** pbVarsX, ** pbVarsY;
    DdNode * bTemp, * bProd;
    Aig_Obj_t * pLatch;
    int i;

    // set the variable mapping for Cudd_bddVarMap()
Alan Mishchenko committed
132 133
    pbVarsX = ABC_ALLOC( DdNode *, dd->size );
    pbVarsY = ABC_ALLOC( DdNode *, dd->size );
Alan Mishchenko committed
134 135 136 137 138 139 140 141 142 143
    bProd = (dd)->one;         Cudd_Ref( bProd );
    Saig_ManForEachLo( p, pLatch, i )
    {
        pbVarsX[i] = dd->vars[ Saig_ManPiNum(p) + i ];
        pbVarsY[i] = dd->vars[ Saig_ManCiNum(p) + i ];
        // get the initial value of the latch
        bProd = Cudd_bddAnd( dd, bTemp = bProd, Cudd_Not(pbVarsX[i]) );      Cudd_Ref( bProd );
        Cudd_RecursiveDeref( dd, bTemp ); 
    }
    Cudd_SetVarMap( dd, pbVarsX, pbVarsY, Saig_ManRegNum(p) );
Alan Mishchenko committed
144 145
    ABC_FREE( pbVarsX );
    ABC_FREE( pbVarsY );
Alan Mishchenko committed
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167

    Cudd_Deref( bProd );
    return bProd;
}

/**Function*************************************************************

  Synopsis    [Collects the array of output BDDs.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
DdNode ** Aig_ManCreateOutputs( DdManager * dd, Aig_Man_t * p )
{
    DdNode ** pbOutputs;
    Aig_Obj_t * pNode;
    int i;
    // compute the transition relation
Alan Mishchenko committed
168
    pbOutputs = ABC_ALLOC( DdNode *, Saig_ManPoNum(p) );
Alan Mishchenko committed
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
    Saig_ManForEachPo( p, pNode, i )
    {
        pbOutputs[i] = Aig_ObjGlobalBdd(pNode);  Cudd_Ref( pbOutputs[i] );
    }
    return pbOutputs;
}

/**Function*************************************************************

  Synopsis    [Collects the array of partition BDDs.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
DdNode ** Aig_ManCreatePartitions( DdManager * dd, Aig_Man_t * p, int fReorder, int fVerbose )
{
    DdNode ** pbParts;
    DdNode * bVar;
    Aig_Obj_t * pNode;
    int i;

    // extand the BDD manager to represent NS variables
    assert( dd->size == Saig_ManCiNum(p) );
    Cudd_bddIthVar( dd, Saig_ManCiNum(p) + Saig_ManRegNum(p) - 1 );

    // enable reordering
    if ( fReorder )
        Cudd_AutodynEnable( dd, CUDD_REORDER_SYMM_SIFT );
    else
        Cudd_AutodynDisable( dd );

    // compute the transition relation
Alan Mishchenko committed
205
    pbParts = ABC_ALLOC( DdNode *, Saig_ManRegNum(p) );
Alan Mishchenko committed
206 207 208 209 210
    Saig_ManForEachLi( p, pNode, i )
    {
        bVar  = Cudd_bddIthVar( dd, Saig_ManCiNum(p) + i );
        pbParts[i] = Cudd_bddXnor( dd, bVar, Aig_ObjGlobalBdd(pNode) );  Cudd_Ref( pbParts[i] );
    }
Alan Mishchenko committed
211
    // free global BDDs
Alan Mishchenko committed
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
    Aig_ManFreeGlobalBdds( p, dd );

    // reorder and disable reordering
    if ( fReorder )
    {
        if ( fVerbose )
            fprintf( stdout, "BDD nodes in the partitions before reordering %d.\n", Cudd_SharingSize(pbParts,Saig_ManRegNum(p)) );
        Cudd_ReduceHeap( dd, CUDD_REORDER_SYMM_SIFT, 100 );
        Cudd_AutodynDisable( dd );
        if ( fVerbose )
            fprintf( stdout, "BDD nodes in the partitions after reordering %d.\n", Cudd_SharingSize(pbParts,Saig_ManRegNum(p)) );
    }
    return pbParts;
}

/**Function*************************************************************

  Synopsis    [Computes the set of unreachable states.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
238
int Aig_ManComputeReachable( DdManager * dd, Aig_Man_t * p, DdNode ** pbParts, DdNode * bInitial, DdNode ** pbOutputs, Saig_ParBbr_t * pPars, int fCheckOutputs )
Alan Mishchenko committed
239 240
{
    int fInternalReorder = 0;
Alan Mishchenko committed
241 242
    Bbr_ImageTree_t * pTree = NULL; // Suppress "might be used uninitialized"
    Bbr_ImageTree2_t * pTree2 = NULL; // Supprses "might be used uninitialized"
Alan Mishchenko committed
243
    DdNode * bReached, * bCubeCs;
Alan Mishchenko committed
244 245 246
    DdNode * bCurrent;
    DdNode * bNext = NULL; // Suppress "might be used uninitialized"
    DdNode * bTemp;
247
    Cudd_ReorderingType method;
248
    int i, nIters, nBddSize = 0, status;
249
    int nThreshold = 10000, clk = clock();
Alan Mishchenko committed
250
    Vec_Ptr_t * vOnionRings;
Alan Mishchenko committed
251 252 253 254

    status = Cudd_ReorderingStatus( dd, &method );
    if ( status )
        Cudd_AutodynDisable( dd );
Alan Mishchenko committed
255 256 257

    // start the image computation
    bCubeCs  = Bbr_bddComputeRangeCube( dd, Saig_ManPiNum(p), Saig_ManCiNum(p) );    Cudd_Ref( bCubeCs );
258 259
    if ( pPars->fPartition )
        pTree = Bbr_bddImageStart( dd, bCubeCs, Saig_ManRegNum(p), pbParts, Saig_ManRegNum(p), dd->vars+Saig_ManCiNum(p), pPars->nBddMax, pPars->fVerbose );
Alan Mishchenko committed
260
    else
261
        pTree2 = Bbr_bddImageStart2( dd, bCubeCs, Saig_ManRegNum(p), pbParts, Saig_ManRegNum(p), dd->vars+Saig_ManCiNum(p), pPars->fVerbose );
Alan Mishchenko committed
262 263 264
    Cudd_RecursiveDeref( dd, bCubeCs );
    if ( pTree == NULL )
    {
265
        if ( !pPars->fSilent )
Alan Mishchenko committed
266
            printf( "BDDs blew up during qualitification scheduling.  " );
Alan Mishchenko committed
267 268 269
        return -1;
    }

Alan Mishchenko committed
270 271 272
    if ( status )
        Cudd_AutodynEnable( dd, method );

Alan Mishchenko committed
273 274 275
    // start the onion rings
    vOnionRings = Vec_PtrAlloc( 1000 );

276
    // perform reachability analysis
Alan Mishchenko committed
277 278
    bCurrent = bInitial;   Cudd_Ref( bCurrent );
    bReached = bInitial;   Cudd_Ref( bReached );
Alan Mishchenko committed
279
    Vec_PtrPush( vOnionRings, bCurrent );  Cudd_Ref( bCurrent );
280
    for ( nIters = 0; nIters < pPars->nIterMax; nIters++ )
Alan Mishchenko committed
281
    { 
282 283 284 285 286 287 288 289 290 291 292 293 294 295
        // check the runtime limit
        if ( pPars->TimeLimit && ((float)pPars->TimeLimit <= (float)(clock()-clk)/(float)(CLOCKS_PER_SEC)) )
        {
            printf( "Reached timeout after image computation (%d seconds).\n",  pPars->TimeLimit );
            Vec_PtrFree( vOnionRings );
            // undo the image tree
            if ( pPars->fPartition )
                Bbr_bddImageTreeDelete( pTree );
            else
                Bbr_bddImageTreeDelete2( pTree2 );
            pPars->iFrame = nIters - 1;
            return -1;
        }

Alan Mishchenko committed
296
        // compute the next states
297
        if ( pPars->fPartition )
Alan Mishchenko committed
298 299 300 301 302
            bNext = Bbr_bddImageCompute( pTree, bCurrent );           
        else
            bNext = Bbr_bddImageCompute2( pTree2, bCurrent );  
        if ( bNext == NULL )
        {
303
            if ( !pPars->fSilent )
Alan Mishchenko committed
304
                printf( "BDDs blew up during image computation.  " );
305
            if ( pPars->fPartition )
Alan Mishchenko committed
306 307 308
                Bbr_bddImageTreeDelete( pTree );
            else
                Bbr_bddImageTreeDelete2( pTree2 );
Alan Mishchenko committed
309
            Vec_PtrFree( vOnionRings );
310
            pPars->iFrame = nIters - 1;
Alan Mishchenko committed
311 312 313 314
            return -1;
        }
        Cudd_Ref( bNext );
        Cudd_RecursiveDeref( dd, bCurrent );
315

Alan Mishchenko committed
316 317 318 319 320 321 322 323
        // remap these states into the current state vars
        bNext = Cudd_bddVarMap( dd, bTemp = bNext );                    Cudd_Ref( bNext );
        Cudd_RecursiveDeref( dd, bTemp );
        // check if there are any new states
        if ( Cudd_bddLeq( dd, bNext, bReached ) )
            break;
        // check the BDD size
        nBddSize = Cudd_DagSize(bNext);
324
        if ( nBddSize > pPars->nBddMax )
Alan Mishchenko committed
325 326 327 328
            break;
        // check the result
        for ( i = 0; i < Saig_ManPoNum(p); i++ )
        {
329
            if ( fCheckOutputs && !Cudd_bddLeq( dd, bNext, Cudd_Not(pbOutputs[i]) ) )
Alan Mishchenko committed
330
            {
Alan Mishchenko committed
331 332 333 334
                DdNode * bIntersect;
                bIntersect = Cudd_bddIntersect( dd, bNext, pbOutputs[i] );  Cudd_Ref( bIntersect );
                assert( p->pSeqModel == NULL );
                p->pSeqModel = Aig_ManVerifyUsingBddsCountExample( p, dd, pbParts, 
335
                    vOnionRings, bIntersect, i, pPars->fVerbose, pPars->fSilent ); 
Alan Mishchenko committed
336
                Cudd_RecursiveDeref( dd, bIntersect );
337
                if ( !pPars->fSilent )
Alan Mishchenko committed
338
                    printf( "Output %d was asserted in frame %d (use \"write_counter\" to dump a witness). ", i, Vec_PtrSize(vOnionRings) );
Alan Mishchenko committed
339 340
                Cudd_RecursiveDeref( dd, bReached );
                bReached = NULL;
341
                pPars->iFrame = nIters;
Alan Mishchenko committed
342 343 344 345 346 347 348
                break;
            }
        }
        if ( i < Saig_ManPoNum(p) )
            break;
        // get the new states
        bCurrent = Cudd_bddAnd( dd, bNext, Cudd_Not(bReached) );        Cudd_Ref( bCurrent );
Alan Mishchenko committed
349
        Vec_PtrPush( vOnionRings, bCurrent );  Cudd_Ref( bCurrent );
Alan Mishchenko committed
350 351 352 353 354 355 356
        // minimize the new states with the reached states
//        bCurrent = Cudd_bddConstrain( dd, bTemp = bCurrent, Cudd_Not(bReached) ); Cudd_Ref( bCurrent );
//        Cudd_RecursiveDeref( dd, bTemp );
        // add to the reached states
        bReached = Cudd_bddOr( dd, bTemp = bReached, bNext );           Cudd_Ref( bReached );
        Cudd_RecursiveDeref( dd, bTemp );
        Cudd_RecursiveDeref( dd, bNext );
357
        if ( pPars->fVerbose )
Alan Mishchenko committed
358
            fprintf( stdout, "Frame = %3d. BDD = %5d. ", nIters, nBddSize );
359
        if ( fInternalReorder && pPars->fReorder && nBddSize > nThreshold )
Alan Mishchenko committed
360
        {
361
            if ( pPars->fVerbose )
Alan Mishchenko committed
362 363 364
                fprintf( stdout, "Reordering... Before = %5d. ", Cudd_DagSize(bReached) );
            Cudd_ReduceHeap( dd, CUDD_REORDER_SYMM_SIFT, 100 );
            Cudd_AutodynDisable( dd );
365
            if ( pPars->fVerbose )
Alan Mishchenko committed
366 367 368
                fprintf( stdout, "After = %5d.\r", Cudd_DagSize(bReached) );
            nThreshold *= 2;
        }
369 370 371
        if ( pPars->fVerbose )
//            fprintf( stdout, "\r" );
            fprintf( stdout, "\n" );
372 373 374 375 376 377 378 379 380

        if ( pPars->fVerbose )
        {
            double nMints = Cudd_CountMinterm(dd, bReached, Saig_ManRegNum(p) );
//            Extra_bddPrint( dd, bReached );printf( "\n" );
            fprintf( stdout, "Reachable states = %.0f. (Ratio = %.4f %%)\n", nMints, 100.0*nMints/pow(2.0, Saig_ManRegNum(p)) );
            fflush( stdout ); 
        }

Alan Mishchenko committed
381 382
    }
    Cudd_RecursiveDeref( dd, bNext );
Alan Mishchenko committed
383
    // free the onion rings
384
    Vec_PtrForEachEntry( DdNode *, vOnionRings, bTemp, i )
Alan Mishchenko committed
385 386
        Cudd_RecursiveDeref( dd, bTemp );
    Vec_PtrFree( vOnionRings );
Alan Mishchenko committed
387
    // undo the image tree
388
    if ( pPars->fPartition )
Alan Mishchenko committed
389 390 391 392 393 394
        Bbr_bddImageTreeDelete( pTree );
    else
        Bbr_bddImageTreeDelete2( pTree2 );
    if ( bReached == NULL )
        return 0; // proved reachable
    // report the stats
395
    if ( pPars->fVerbose )
Alan Mishchenko committed
396 397
    {
        double nMints = Cudd_CountMinterm(dd, bReached, Saig_ManRegNum(p) );
398
        if ( nIters > pPars->nIterMax || nBddSize > pPars->nBddMax )
Alan Mishchenko committed
399 400 401 402 403 404
            fprintf( stdout, "Reachability analysis is stopped after %d frames.\n", nIters );
        else
            fprintf( stdout, "Reachability analysis completed after %d frames.\n", nIters );
        fprintf( stdout, "Reachable states = %.0f. (Ratio = %.4f %%)\n", nMints, 100.0*nMints/pow(2.0, Saig_ManRegNum(p)) );
        fflush( stdout );
    }
Alan Mishchenko committed
405
//ABC_PRB( dd, bReached );
Alan Mishchenko committed
406
    Cudd_RecursiveDeref( dd, bReached );
407
    if ( nIters > pPars->nIterMax || nBddSize > pPars->nBddMax )
Alan Mishchenko committed
408
    {
409
        if ( !pPars->fSilent )
Alan Mishchenko committed
410 411
            printf( "Verified only for states reachable in %d frames.  ", nIters );
        return -1; // undecided
Alan Mishchenko committed
412
    }
413
    if ( !pPars->fSilent )
Alan Mishchenko committed
414
        printf( "The miter is proved unreachable after %d iterations.  ", nIters );
415
    pPars->iFrame = nIters - 1;
Alan Mishchenko committed
416 417 418 419 420
    return 1; // unreachable
}

/**Function*************************************************************

Alan Mishchenko committed
421
  Synopsis    [Performs reachability to see if any PO can be asserted.]
Alan Mishchenko committed
422 423 424 425

  Description []
               
  SideEffects []
Alan Mishchenko committed
426
 
Alan Mishchenko committed
427 428 429
  SeeAlso     []

***********************************************************************/
430
int Aig_ManVerifyUsingBdds_int( Aig_Man_t * p, Saig_ParBbr_t * pPars )
Alan Mishchenko committed
431
{
432
    int fCheckOutputs = !pPars->fSkipOutCheck;
Alan Mishchenko committed
433 434
    DdManager * dd;
    DdNode ** pbParts, ** pbOutputs;
Alan Mishchenko committed
435
    DdNode * bInitial, * bTemp;
Alan Mishchenko committed
436
    int RetValue, i, clk = clock();
Alan Mishchenko committed
437
    Vec_Ptr_t * vOnionRings;
Alan Mishchenko committed
438 439 440 441

    assert( Saig_ManRegNum(p) > 0 );

    // compute the global BDDs of the latches
442
    dd = Aig_ManComputeGlobalBdds( p, pPars->nBddMax, 1, pPars->fReorder, pPars->fVerbose );    
Alan Mishchenko committed
443 444
    if ( dd == NULL )
    {
445 446
        if ( !pPars->fSilent )
            printf( "The number of intermediate BDD nodes exceeded the limit (%d).\n", pPars->nBddMax );
Alan Mishchenko committed
447 448
        return -1;
    }
449
    if ( pPars->fVerbose )
Alan Mishchenko committed
450 451
        printf( "Shared BDD size is %6d nodes.\n", Cudd_ReadKeys(dd) - Cudd_ReadDead(dd) );

452 453 454 455 456 457 458 459
    // check the runtime limit
    if ( pPars->TimeLimit && ((float)pPars->TimeLimit <= (float)(clock()-clk)/(float)(CLOCKS_PER_SEC)) )
    {
        printf( "Reached timeout after constructing global BDDs (%d seconds).\n",  pPars->TimeLimit );
        Cudd_Quit( dd );
        return -1;
    }

Alan Mishchenko committed
460 461 462
    // start the onion rings
    vOnionRings = Vec_PtrAlloc( 1000 );

Alan Mishchenko committed
463 464 465 466
    // save outputs
    pbOutputs = Aig_ManCreateOutputs( dd, p );

    // create partitions
467
    pbParts = Aig_ManCreatePartitions( dd, p, pPars->fReorder, pPars->fVerbose );
Alan Mishchenko committed
468 469

    // create the initial state and the variable map
470
    bInitial  = Aig_ManInitStateVarMap( dd, p, pPars->fVerbose );  Cudd_Ref( bInitial );
Alan Mishchenko committed
471

Alan Mishchenko committed
472
    // set reordering
473
    if ( pPars->fReorderImage )
Alan Mishchenko committed
474 475
        Cudd_AutodynEnable( dd, CUDD_REORDER_SYMM_SIFT );

Alan Mishchenko committed
476 477 478 479
    // check the result
    RetValue = -1;
    for ( i = 0; i < Saig_ManPoNum(p); i++ )
    {
480
        if ( fCheckOutputs && !Cudd_bddLeq( dd, bInitial, Cudd_Not(pbOutputs[i]) ) )
Alan Mishchenko committed
481
        {
Alan Mishchenko committed
482 483 484 485
            DdNode * bIntersect;
            bIntersect = Cudd_bddIntersect( dd, bInitial, pbOutputs[i] );  Cudd_Ref( bIntersect );
            assert( p->pSeqModel == NULL );
            p->pSeqModel = Aig_ManVerifyUsingBddsCountExample( p, dd, pbParts, 
486
                vOnionRings, bIntersect, i, pPars->fVerbose, pPars->fSilent ); 
Alan Mishchenko committed
487
            Cudd_RecursiveDeref( dd, bIntersect );
488
            if ( !pPars->fSilent )
Alan Mishchenko committed
489
                printf( "The miter output %d is proved REACHABLE in the initial state (use \"write_counter\" to dump a witness). ", i );
Alan Mishchenko committed
490 491 492 493
            RetValue = 0;
            break;
        }
    }
Alan Mishchenko committed
494
    // free the onion rings
495
    Vec_PtrForEachEntry( DdNode *, vOnionRings, bTemp, i )
Alan Mishchenko committed
496 497
        Cudd_RecursiveDeref( dd, bTemp );
    Vec_PtrFree( vOnionRings );
Alan Mishchenko committed
498 499
    // explore reachable states
    if ( RetValue == -1 )
500
        RetValue = Aig_ManComputeReachable( dd, p, pbParts, bInitial, pbOutputs, pPars, fCheckOutputs ); 
Alan Mishchenko committed
501 502 503 504 505

    // cleanup
    Cudd_RecursiveDeref( dd, bInitial );
    for ( i = 0; i < Saig_ManRegNum(p); i++ )
        Cudd_RecursiveDeref( dd, pbParts[i] );
Alan Mishchenko committed
506
    ABC_FREE( pbParts );
Alan Mishchenko committed
507 508
    for ( i = 0; i < Saig_ManPoNum(p); i++ )
        Cudd_RecursiveDeref( dd, pbOutputs[i] );
Alan Mishchenko committed
509
    ABC_FREE( pbOutputs );
510
//    if ( RetValue == -1 )
Alan Mishchenko committed
511
        Cudd_Quit( dd );
512 513
//    else
//        Bbr_StopManager( dd );
Alan Mishchenko committed
514 515

    // report the runtime
516
    if ( !pPars->fSilent )
Alan Mishchenko committed
517
    {
Alan Mishchenko committed
518
    ABC_PRT( "Time", clock() - clk );
Alan Mishchenko committed
519
    fflush( stdout );
Alan Mishchenko committed
520
    }
Alan Mishchenko committed
521 522 523
    return RetValue;
}

Alan Mishchenko committed
524 525 526 527 528 529 530 531 532 533 534
/**Function*************************************************************

  Synopsis    [Performs reachability to see if any PO can be asserted.]

  Description []
               
  SideEffects []

  SeeAlso     []

***********************************************************************/
535
int Aig_ManVerifyUsingBdds( Aig_Man_t * pInit, Saig_ParBbr_t * pPars )
Alan Mishchenko committed
536
{
537
    Abc_Cex_t * pCexOld, * pCexNew;
Alan Mishchenko committed
538 539 540 541
    Aig_Man_t * p;
    Aig_Obj_t * pObj;
    Vec_Int_t * vInputMap;
    int i, k, Entry, iBitOld, iBitNew, RetValue;
542
//    pPars->fVerbose = 1;
Alan Mishchenko committed
543 544 545 546 547
    // check if there are PIs without fanout
    Saig_ManForEachPi( pInit, pObj, i )
        if ( Aig_ObjRefs(pObj) == 0 )
            break;
    if ( i == Saig_ManPiNum(pInit) )
548
        return Aig_ManVerifyUsingBdds_int( pInit, pPars );
Alan Mishchenko committed
549 550
    // create new AIG
    p = Aig_ManDupTrim( pInit );
551
    assert( Aig_ManCiNum(p) < Aig_ManCiNum(pInit) );
Alan Mishchenko committed
552
    assert( Aig_ManRegNum(p) == Aig_ManRegNum(pInit) );
553
    RetValue = Aig_ManVerifyUsingBdds_int( p, pPars );
Alan Mishchenko committed
554 555 556 557 558 559 560 561 562 563 564 565
    if ( RetValue != 0 )
    {
        Aig_ManStop( p );
        return RetValue;
    }
    // the problem is satisfiable - remap the pattern
    pCexOld = p->pSeqModel;
    assert( pCexOld != NULL );
    // create input map
    vInputMap = Vec_IntAlloc( Saig_ManPiNum(pInit) );
    Saig_ManForEachPi( pInit, pObj, i )
        if ( pObj->pData != NULL )
566
            Vec_IntPush( vInputMap, Aig_ObjCioId((Aig_Obj_t *)pObj->pData) );
Alan Mishchenko committed
567 568 569
        else
            Vec_IntPush( vInputMap, -1 );
    // create new pattern
570
    pCexNew = Abc_CexAlloc( Saig_ManRegNum(pInit), Saig_ManPiNum(pInit), pCexOld->iFrame+1 );
Alan Mishchenko committed
571 572 573 574
    pCexNew->iFrame = pCexOld->iFrame;
    pCexNew->iPo    = pCexOld->iPo;
    // copy the bit-data
    for ( iBitOld = 0; iBitOld < pCexOld->nRegs; iBitOld++ )
575 576
        if ( Abc_InfoHasBit( pCexOld->pData, iBitOld ) )
            Abc_InfoSetBit( pCexNew->pData, iBitOld );
Alan Mishchenko committed
577 578 579 580 581 582 583 584
    // copy the primary input data
    iBitNew = iBitOld;
    for ( i = 0; i <= pCexNew->iFrame; i++ )
    {
        Vec_IntForEachEntry( vInputMap, Entry, k )
        {
            if ( Entry == -1 )
                continue;
585 586
            if ( Abc_InfoHasBit( pCexOld->pData, iBitOld + Entry ) )
                Abc_InfoSetBit( pCexNew->pData, iBitNew + k );
Alan Mishchenko committed
587 588 589 590 591 592 593 594 595 596 597 598
        }
        iBitOld += Saig_ManPiNum(p);
        iBitNew += Saig_ManPiNum(pInit);
    }
    assert( iBitOld < iBitNew );
    assert( iBitOld == pCexOld->nBits );
    assert( iBitNew == pCexNew->nBits );
    Vec_IntFree( vInputMap );
    pInit->pSeqModel = pCexNew;
    Aig_ManStop( p );
    return 0;
}
Alan Mishchenko committed
599 600 601 602 603 604

////////////////////////////////////////////////////////////////////////
///                       END OF FILE                                ///
////////////////////////////////////////////////////////////////////////


605 606
ABC_NAMESPACE_IMPL_END