techSetLayerFunctions
techSetLayerFunctions(d_techIDl_layerFunctionsList) => t / nil
Description
When the specified layers are not already assigned functions (materials), sets the function assignments in the specified technology database. If any layer is already assigned a function, techSetLayerFunctions returns a message to that effect and does not change that function assignment, but does change the others. ASCII technology file location: functions subsection in the layerRules section; it assigns functions to layers. If a functions subsection does not exist, this function creates one with the specified data.
For more information about layer functions, see
Arguments
|
A list of lists specifying the layer names and functions to assign to them. The list has the following syntax: |
|
Value Returned
Example
techSetLayerFunctions(tfID list(list("poly2" "poly") list("metal3" "metal")))
=> t
Assigns the layer function poly to the layer poly2 and the layer function metal to the layer metal3 in the technology database identified by tfID.
Return to top