techSetPrStackVias
techSetPrStackVias(d_techIDl_stackVias) => t / nil
Description
Updates the specified technology database to mark the listed pairs of via layers stackable. ASCII technology file location: stackable subsection in the spacings section of the foundry constraint group for the specified via layer pairs.
Arguments
|
A list of lists of two via layers. The list has the following syntax: |
Value Returned
|
The technology database does not exist or one or more of the specified layers are not defined. |
Example
techSetPrStackVias(tfID
list(list("via" "via2") list("via3" "via4"))
)
=> t
Specifies via1 and via2 stackable and via3 and via4 stackable in the technology database identified by tfID. Adds the following to the foundry constraint group:
spacings(
(stackable "via" "via2" t)
(stackable "via3" "via4" t)
) ;spacings
Return to top