home *** CD-ROM | disk | FTP | other *** search
/ swCHIP 1991 January / swCHIP_95-1.bin / demo / wit4711 / lib / help / flow / for. / for.bin
Text File  |  1995-12-09  |  844b  |  19 lines

  1. OPERATOR
  2.  
  3. for --- repeat a set of operations for a specified number of times
  4.  
  5.  
  6. DESCRIPTION
  7.  
  8. The for operator provides for looping objects through a set of igraph 
  9. operators. It has one integer parameter, count . Every time a token arrives 
  10. at the input port, count is decremented by one. If the resulting value of 
  11. count is greater than zero, the token is passed to the top branch (labelled 
  12. >0 ), which most often would have a list of operators eventually sending a 
  13. token back to the input of the for operator. When count reaches zero, the 
  14. input token is sent to the lower branch (labelled 0 ). As count is 
  15. decremented, its current value is interactively displayed on the igraph. 
  16.  
  17. When you run the igraph again, the current value of count will revert to the 
  18. value stored as the parameter. 
  19.