- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have generated a collection thus:
set clkcoll [get_clocks *] foreach_in_collection clk $clkcoll { puts [ get_object_name $clk ] } How do I translate the collection iterator into a name string? Synopsys has the "get_object_name" function to return the object name as a string. This does not work in Time Quest. What is the Time Quest method? Solution found: get_object_info $item -name set clkcoll [get_clocks *] foreach_in_collection item $clkcoll { set clk [get_object_info $item -name] puts $clk }Link Copied
0 Replies

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page