gpeAddStrapEntries
gpeAddStrapEntries(u_sandbox l_straps[?verbose{t|nil} ] ) =>t/nil
Description
Adds the specified straps to the topology (topo) section of the specified Modgen sandbox object.
Arguments
Value Returned
|
Indicates that the straps have been added to the Modgen sandbox object. |
|
Example
The following example creates instance terminal entries, and then uses these to create strap entries. The strap entries are then used in gpeAddStrapEntries to add straps to a specified Modgen sandbox:
strapConstraints = list(
list("validLayers" nil list("Metal1"))
list("minWidth" list("Metal1") 0.14)
)
its1 = gpeCreateInstTermEntries(?deviceNames list("M1" "M2") ?instTermNames list("D" "G"))
straps1=gpeCreateStrapEntries(?netNames list("vssa!") ?instTermEntries list(its1) ?constraints strapConstraints)
sandbox = gpeEditSandbox(leGetEditFigGroup())
gpeAddStrapEntries(sandbox straps1)
Return to top