Hi kevin, Kevin Black wrote: >Hi Wendy, > >Maybe you don't know the answer to this but what do I do with: > >string selectBy = ("sextant", "stc", "fiber") >int selectByList = ( 0, 0, 0, 0 // sextant > 0, 0, 1, 1 // stc > 0, 1, 0, 1) // fiber > In the example above, test vectors are generated for (sextant, stc, fiber) = (0,0,0), (0,0,1), (0,1,0) and (0,1,1). Suppose you wish to select by barrel, layer, ladder. You can do the following string selectBy = ("barrel", "layer", "ladder") int selectByList = (1, 1 // barrel 1, 2, // layer 1, 3) // ladder This would select (barrel,layer,ladder) = (1,1,1) and (1,2,3). Since the test vector code is new, it is likely that it contains bugs. I'll repair the code as bugs are found. Harrison