diff options
| author | Alan Mishchenko <alanmi@berkeley.edu> | 2006-11-28 08:01:00 -0800 | 
|---|---|---|
| committer | Alan Mishchenko <alanmi@berkeley.edu> | 2006-11-28 08:01:00 -0800 | 
| commit | 44d220d28fa2ee56cb539e03684f021731814f17 (patch) | |
| tree | 97ece1e77fa8fff2283c62fb9253424e566e7fba /src/map/fpga/fpgaMatch.c | |
| parent | 6ad22b4d3b0446652919d95b15fefb374bddfac0 (diff) | |
| download | abc-44d220d28fa2ee56cb539e03684f021731814f17.tar.gz abc-44d220d28fa2ee56cb539e03684f021731814f17.tar.bz2 abc-44d220d28fa2ee56cb539e03684f021731814f17.zip  | |
Version abc61128
Diffstat (limited to 'src/map/fpga/fpgaMatch.c')
| -rw-r--r-- | src/map/fpga/fpgaMatch.c | 12 | 
1 files changed, 12 insertions, 0 deletions
diff --git a/src/map/fpga/fpgaMatch.c b/src/map/fpga/fpgaMatch.c index 736d38b2..d413a067 100644 --- a/src/map/fpga/fpgaMatch.c +++ b/src/map/fpga/fpgaMatch.c @@ -87,6 +87,18 @@ int Fpga_MappingMatches( Fpga_Man_t * p, int fDelayOriented )          Extra_ProgressBarUpdate( pProgress, i, "Matches ..." );      }      Extra_ProgressBarStop( pProgress ); +/* +    if ( !fDelayOriented ) +    { +        float Area = 0.0; +        for ( i = 0; i < p->nOutputs; i++ ) +        { +            printf( "%5.2f ", Fpga_Regular(p->pOutputs[i])->pCutBest->aFlow ); +            Area += Fpga_Regular(p->pOutputs[i])->pCutBest->aFlow; +        } +        printf( "\nTotal = %5.2f\n", Area ); +    } +*/      return 1;  }  | 
