dbAttachRowRegionToPRBoundary
dbAttachRowRegionToPRBoundary(
d_rowRegionId
)
=> t / nil
Description
Associates the given rowRegion with the PRBoundary in the same block. If the PRBoundary is assigned to another rowRegion, it is first detached from that region before being assigned to the specified rowRegion.
Arguments
Value Returned
|
The given rowRegion is attached to the specified PRBoundary. |
|
Examples
Associates rowRegion with a custom PR boundary in the same block.
;Create PRBoundary
dbCreatePRBoundary(cv list(list(0 0) list(1.1 0) list(1.1 1.1) list(0 1.1)))
;Create rowRegion
dbCreateRowRegion(cvId "rowRegion" "rowRegionSpec" list(list(0 0) list(2000 0) list(2000 5000) list(0 5000)))
;Attach rowRegion to PRBoundary
dbAttachRowRegionToPRBoundary(rowRegion)
Related Topics
Placement Database Access Functions
Return to top