bndRegRemoveDeviceGetSurvivingNet
bndRegRemoveDeviceGetSurvivingNet(
S_function
)
=> t / nil
Description
Registers a user-defined SKILL function that takes a list of net IDs and returns the ID of the single net that survives when devices are removed during layout generation.
Arguments
|
Name of the user-defined SKILL function that is registered by |
Value Returned
Example
Registers the user-defined SKILL function before launching XL and chooses the surviving net alphabetically.
procedure( sortName( i1 i2 )
alphaNumCmp(i1~>name i2~>name) <= 0
)
procedure(chooseNet(nets)
let((net)
net = car(sort(nets 'sortName))
net
)
)
bndRegRemoveDeviceGetSurvivingNet('chooseNet)
Return to top