- Timestamp:
- 11/05/13 10:27:17 (11 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior/AlgorithmBehaviorUnitTests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/AlgorithmBehaviorUnitTests/PermutationCacheTest.cs
r10104 r10105 42 42 //should be added 43 43 PermutationSolutionInformation pi = new PermutationSolutionInformation(); 44 pi. Generation = 9;44 pi.Iteration = 9; 45 45 pi.ProducedBy = ProducedBy.Mutation; 46 46 dict.Add(p, pi); … … 48 48 //should be added 49 49 pi = new PermutationSolutionInformation(); 50 pi. Generation = 10;50 pi.Iteration = 10; 51 51 pi.ProducedBy = ProducedBy.Mutation; 52 52 dict.Add(p, pi); … … 54 54 //should be added 55 55 pi = new PermutationSolutionInformation(); 56 pi. Generation = 10;56 pi.Iteration = 10; 57 57 pi.ProducedBy = ProducedBy.Crossover; 58 58 dict.Add(p, pi); … … 60 60 //should not be added 61 61 pi = new PermutationSolutionInformation(); 62 pi. Generation = 10;62 pi.Iteration = 10; 63 63 pi.ProducedBy = ProducedBy.Mutation; 64 64 dict.Add(p, pi); -
branches/HeuristicLab.Analysis.AlgorithmBehavior/AlgorithmBehaviorUnitTests/RealVectorSolutionCacheTest.cs
r10104 r10105 54 54 info = new RealVectorSolutionInformation(); 55 55 info.ProducedBy = ProducedBy.Move; 56 info. Generation = 20;56 info.Iteration = 20; 57 57 solutionCache.Add(vector, info); 58 58
Note: See TracChangeset
for help on using the changeset viewer.