techGetParams
techGetParams(d_techFileID) =>l_params/ nil
Description
Returns the list of control parameters that are set in the specified technology database.
Arguments
Value Returned
|
List of control parameters and their values. The list has the following syntax: |
|
|
The technology file does not exist, or the technology file does not define any control parameters. |
Example
tfID = techGetTechFile(ddGetObj("testLib"))
db:0x0180200d
techGetParams(tfID)
=> (("lambda" 0.6)
("theta" 2.5)
)
Returns the parameters defined in the technology file identified by tfID (testLib).
Return to top