Changeset 18086 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/FeynmanLargeInstanceProvider.cs
- Timestamp:
- 11/19/21 16:07:45 (3 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/FeynmanLargeInstanceProvider.cs
r17677 r18086 35 35 36 36 37 var noiseRatio = new double?[] { null, 1, 10E-2, 10E-4};37 var noiseRatio = new double?[] { null, 0.1, 0.3, 1 }; 38 38 39 39 #region types … … 163 163 164 164 165 foreach (var n in noiseRatio) {166 foreach (var type in descriptorTypes) {165 foreach (var type in descriptorTypes) { 166 foreach (var n in noiseRatio) { 167 167 descriptorList.Add((IDataDescriptor)Activator.CreateInstance(type, rand.Next(), 10000, 10000, n)); 168 168 }
Note: See TracChangeset
for help on using the changeset viewer.