not_sets
not_sets -set1d_setObj-set2d_setObj
Description
Returns a new set that contains objects that are in set1 and not in set2.
Arguments
Value Returned
Examples
Finds the objects that are in myset1 and not in myset2. In this example, the first set contains all the objects and the second set contains only instances that match the expression given as the instance name. The resulting set contains all objects except those in myset2.
select_all
set myset1 [get_selection_set]
set myset2 [find -cellview -inst I110_BLOCKA.*]
not_sets -set1 $myset1 -set2 $myset2
Related Topics
Return to top