04-05-2004 12:44 PM
04-05-2004 12:56 PM
04-05-2004 01:09 PM
04-05-2004 01:23 PM
04-05-2004 01:30 PM
04-05-2004 02:36 PM
04-05-2004 03:10 PM
04-05-2004 03:11 PM
04-05-2004 03:13 PM
02-23-2011 10:52 PM
Hi to all.
I have modified a software in order to enhance performance.
There was a loop, originally each time that a test was performed, the software read a max of 24 text files, and each file was used to fill a numeric array from 2k to 32k positions.
So i made a parallel loop with an event structure, read that files only when the softwares runs initially, when i change the model under test or when i press the button if i change the data files.
But in order to do that, i have created 24 local variables to pass the data from the event structure loop to the test loop.
I have been enhancing that program reducing the number of local and global variables, creating the data flow on my own (i have deleted tens of sequence structures), and choosing proper data types for controls / indicators.
The question is:
Which is the best method to remove those 24 array variables (and maybe another 10 big variables)?