I have a question which seems to be simple. I have a for loop where I call different functions at each iteration. Some of these functions are only needed to be used at the first iteration if a certain condition holds. One way to solve this problem is checking the condition with "if" statement before calling the related function, but I am wondering if there is any other way to take care of this since I have more than 10 functions with the same situation (with different condition of course)? As an example, please take a look at the following pseudo code:
for Iteration < Generation
...
if ('certain condition 01 holds true')
output = function01(arguments)
end
...
...
if ('certain condition 02 holds true')
output = function02(arguments)
end
...
...
if ('certain condition 10 holds true')
output = function10(arguments)
end
...
end
If I have, lets say, 10000 iterations, each of these "if" statement should be evaluated 10000 times which increase the computation time significantly. Is it possible to use object-oriented programming and classes instead of functions to make it better and probably faster?

ifseems appropriate here)... – zplesivcak Jan 27 at 0:35