gpeCreateTwigEntries
gpeCreateTwigEntries( [ ?instTermEntriesl_instTermEntries] [ ?constraintsl_constraints] [ ?templatel_template] [?verbose{t|nil} ] ) =>g_twigObject/ nil
Description
Creates a Modgen sandbox twig object, which specifies the instance terminals to make connections to and the constraints that define how the connections must be made. The twig objects can be added to trunk with the ?twigEntries parameter on gpeCreateTrunkEntries.
Arguments
Value Returned
Example
In the following example, values for twigConstraints and iterm are first instantiated. These values are then passed as arguments in gpeCreateTwigEntries:
twigConstraints = list(
list("validLayers" nil list("Metal1"))
list("minWidth" list("Metal1") 0.14)
)
iterm = gpeCreateInstTermEntries(?deviceNames list("M1" "M2") ?instTermNames list("G" "D"))
twigEntry = gpeCreateTwigEntries(?instTermEntries list(iterm) ?constraints twigConstraints)
Return to top