Changes between Version 102 and Version 110 of Ticket #2521
- Timestamp:
- 09/16/19 23:51:38 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2521 – Description
v102 v110 6 6 * SingleObjective- & MultiObjectiveProblem introduce virtual member calls in their ctor to get the Maximization value, which poses a problem as the value might not be known at this time 7 7 * Cancellation token in Evaluate function of Problems 8 * Introduce new parameter type that can look up problems and algorithms8 * ~~Introduce new parameter type that can look up problems and algorithms~~ 9 9 * Introduce SolutionParameter in ISolutionCreator<TSolution> 10 10 * Create new interface that specifies solution parameter 11 11 * Adapt all operators to this interface 12 * Decouple Solutions from ValueTypeArrays (e.g. IntVector subclass IntArray) 12 * Decouple Solutions from ValueTypeArrays (e.g. IntVector subclass IntArray) -> move to separate ticket 13 13 * Return additional data from Evaluate (see discussion in #2774) 14 14 * Separate icons for single- and multi-objective problems 15 15 * Adapt unit tests 16 * Check for commented tests ( PTSP,Scheduling, BinPacking)16 * Check for commented tests (Scheduling, BinPacking) 17 17 * ~~Evaluate method in QAP is slow due to parameter access~~, check other problems too 18 18 * Improved speed in r17232 … … 20 20 === Refactoring of Plugins === 21 21 * HL.Problems.BinPacking 22 * HL.Problems.GraphColoring abeham23 * HL.Problems.PTSP 22 * ~~HL.Problems.GraphColoring~~ 23 * HL.Problems.PTSP (abeham ongoing) 24 24 * HL.Problems.Scheduling 25 25 * HL.Problems.TestFunctions.MultiObjective mkommend 26 26 * HL.Problems.GrammaticalEvolution.DataAnalysis 27 27 * ~~HL.Problems.TravelingSalesman~~ 28 * HL.Problems.VehicleRouting 28 29 * HL.Algorithms.MOCMAEvolutionStrategy 29 30 … … 35 36 * P3 EvaluationTracker 36 37 * PSOSwarmUpdater & Initializer Boundsparameter 37 38 39 38 40 39 To discuss: