194 | | * Parameter checks should be added to every algorithm. E.g. it should not be possible to start an GA/OSGA with negative or zero population size. Neg. population size results in an !ArithmeticOverflowException in the selection operator, because arrays of negative size could not be allocated. |
195 | | * Negative mutation rates or maximum generations do not produce an error, but are meaningless and should IMHO also be checked. |
196 | | * !ItemCollectionListView: reproducible !InvalidOperationException occurs if a saved experiment is loaded, started and then an algorithm is display by selecting an IOptimizer contained in the experiment. |
| 194 | * Parameter checks should be added to every algorithm. E.g. it should not be possible to start an GA/OSGA with negative or zero population size. Neg. population size results in an !ArithmeticOverflowException in the selection operator, because arrays of negative size could not be allocated. |
| 195 | * Negative mutation rates or maximum generations do not produce an error, but are meaningless and should IMHO also be checked. |