10-09-2008 10:28 AM
10-09-2008 12:52 PM
I'm not sure if I understand your question completely, but I will answer what I think your question is.
Each test needs to run N number of times, while increasing by 10 (for example).
Inside a 'for' loop, put your code for your test.
Wire N to the number of iterations.
Then say you wanted each iteration to increase by 10 units,
you would multiply the current iteration by 10 and use that output for the current interval.
Then the next iteration would make the interval be 10 more and so forth.
Was that your question?
10-09-2008 12:56 PM - edited 10-09-2008 12:57 PM
Like this.....

10-10-2008 08:45 AM
Not quite. I actually figured it out. What the goal was is test a unit, and have the program keep track of how many has been tested. If the part fails, the count stays the same. if it passes, the count increments by one. It ended up working with 2 property nodes of the unit number indicator. One read, one write, with a case in between. true is connected straight through, whilst false has an increment in the middle. The T/F property node from the test result supplies the case selection. Like this: