|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
脚本很简单如下:
foreach_in_collection iell [get_cells -intersect {{231.952 535.040} {239.552 540.056}}] {
remove_cell $iell
}
Iteration for collection %s was terminated
because the collection was modified or deleted.
Commands in the body of a foreach_in_collection can affect
the collection which is currently in
iteration. Some commands can cause objects to
be removed from the collection, and others can cause the collection
to be deleted. When such events occur,
the iterator is modified and in some cases will terminate. This
message advises you of that event.
For example:
foreach_in_collection itr [get_cells *] {
remove_design [current_design] }
would cause the collection of cells to be deleted, and the iteration
would be terminated. |
|