dbCreateUniqueNamedNet
dbCreateUniqueNamedNet(d_cellViewt_prefixx_numBits) =>d_net/ nil
Description
Creates a new net with a unique name.
A unique name for the net is automatically generated. The name is composed of the given t_prefix followed by a unique number as specified by x_numBits.
Arguments
Value Returned
Examples
Create a single bit net named Nx where x is a unique number.
net = dbCreateUniqueNamedNet(cellview "N" 1)=> N1
Creates a new net named N<0:3>.
net = dbCreateUniqueNamedNet(cvId "N" 4)=> N<0:3>
bus = dbCreateUniqueNamedNet(cellview "B" -31)=> B<30:0>
Related Topics
Connectivity Creation and Modification Functions
Return to top