home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / cad / cadence / 205 < prev    next >
Encoding:
Internet Message Format  |  1992-07-31  |  2.1 KB

  1. Path: sparky!uunet!idtinc!cwp
  2. From: cwp@idtinc.UUCP (Chuck Phillips)
  3. Newsgroups: comp.cad.cadence
  4. Subject: Re: how to add to selected set in Edge
  5. Message-ID: <488@idtinc.UUCP>
  6. Date: 31 Jul 92 15:59:47 GMT
  7. References: <lyndon.712435355@angelo>
  8. Organization: Integrated Device Technology, Santa Clara
  9. Lines: 49
  10.  
  11. In article <lyndon.712435355@angelo> lyndon@angelo.amd.com (Lyndon C. Lim) writes:
  12. >if i have the dbobject, how do i add it to the
  13. >selected set on screen?
  14. >
  15. >for example,
  16. >
  17. >     insts = selectedSet()
  18. >     subAll()
  19. >
  20. >     foreach(i insts
  21. >        if( <some criteria> then
  22. >            <select i, ie. i is highlighted on screen>
  23. >        )
  24. >     )
  25. >
  26.  
  27. In Edge, if you want to see anything on the screen that is done in a
  28. skill program you need to use refresh() after each command. So in your
  29. case your code would be:
  30.  
  31.      foreach(i insts
  32.         if( <some criteria> then
  33.        add(l_coord_pair)
  34.        refresh()
  35.         )
  36.      )
  37.  
  38. >also, what is the difference between add() and addDI().
  39. >i can't really find any documentation in my skill book on
  40. >these functions which explains their differences.
  41. >
  42.  
  43. I used to know but have long since forgotten this one. Call
  44. 1-800-223-3622 and ask them. This is Cadence's Customer Service Hot Line.
  45.  
  46. >thanks,
  47. >lyndon c.
  48.  
  49. ==============================================================================
  50. |Chuck Phillips                                   |                          |
  51. |Integrated Device Technology, Inc                |Just so you know who to   |
  52. |2670 Seeley Ave                                  |contact and that they     |
  53. |San Jose, CA 95134                               |exist - not that I speak  |
  54. |(408)944-2052                                    |for, or on behalf of,     |
  55. |(408)944-2195 (FAX)                              |any of them.              |
  56. |uunet.uu.net!idtg!cwp                            |                          |
  57. |International Cadence User Group-Layout SIG Chair|I speak alone!            |
  58. |Bay Area Cadence User People, BACUP, Chair      |                          |
  59. ==============================================================================
  60.