Hello,
is it possible to ‘replace’ an output spread in the Evaluate() function, in order to make it faster?
Right now I am setting every slice of a spread to a new value, but I already have all the values at that time, so simply pointing the output to another spread that has already been filled elsewhere, would speed up the time needed for Evaluate() to finish tremendously.
Can this be done?
The following doesn’t seem to have an effect on the output pin:
FTestOut = selectSpread ? receivedSpreadB : receivedSpreadA;
selectSpread = ! selectSpread;