Help for this page

Select Code to Download


  1. or download this
    $NetNameAndFanout = join (" ",$NetName,$NetFanout);
    $NetStatsHash{$NetNameAndFanout} = join (" ",$NetCap,$NetRes,$NetLengt
    +h,$FirstDriver);
    
  2. or download this
    use constant (p_name   => 0,
                  p_cap    => 1,
    ...
                  p_driver => 4);
    
    push @{$NetStats[ $NetFanout ] ||= []}, [ $NetName, $NetCap, $NetRes, 
    +$NetLength, $FirstDriver, ];
    
  3. or download this
    my $filter = sub {
      return 0 if ($UseDriverCell and $_[0]->[p_driver] !~ /$DriverPattern
    +/ );
    ...
        print ("No nets match input criteria when fanout = $i.  Please rev
    +iew command-line settings--they may be too restrictive!");
      }
    }