mptGetOutdatedDesigns
mptGetOutdatedDesigns(d_cellViewID[t_mode] ) =>l_outdated/ nil
Description
Returns a list of the cellviews in the design hierarchy for which the color information is outdated. The list can optionally specify the outdated layers for each cellview in the returned list.
Outdated cellviews have one or more of the following characteristics:
- The cellview was edited while the color engine was off.
- Color information was updated more recently for data at a lower level of the hierarchy.
- Data at a lower level of the hierarchy was edited while the color engine was off.
Arguments
Values Returned
|
The list of cellview-layer list pairs or cellviews in the hierarchy with outdated color information. |
|
|
None of the cellviews for this design has outdated color information. |
Examples
mptGetOutdatedDesigns( geGetEditCellView() "perDesign" )
(db:0x2d54ca9a db:2d54971a)
Returns the list of cellviews in the hierarchy, in bottom-up order that have outdated color information.
mptGetOutdatedDesigns( geGetEditCellView() "perLayer" )
((db:0x2d54ca9a
(34)
)
(db:2d54971a
(30 34)
)
)
Returns the list of cellview-layer list pairs, given in bottom-up order for the current edit cellview. The layers listed for each cellview have outdated color information. In this example, the cellview with the ID of db:0x2d54ca9a has one layer number 34 with outdated color information, and the cellview with the ID of db:2d54971a has two layers, layer numbers 30 and 34, with outdated color information. In this case, the second cellview in the list is the top-level cellview.
Related Topic
Return to top