or_sets
or_sets -set1d_setObj-set2d_setObj
Description
Creates a new set that contains all the objects that are in the specified sets. This is also known as a set union.
Arguments
Value Returned
Examples
Creates a new set that is the union of myset1 and myset2. In this example, the first set contains all instances matching I90.*. This is combined with the second set that contains all instances matching I110_BLOCKA.*.
set myset1 [find -cellview -inst I90.*]
set myset2 [find -cellview -inst I110_BLOCKA.*]
or_sets -set1 $myset1 -set2 $myset2
Related Topics
Return to top