Changeset 18135 for branches/3140_NumberSymbol
- Timestamp:
- 12/16/21 09:28:36 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3140_NumberSymbol/HeuristicLab.Problems.GrammaticalEvolution/3.4/SymbolicRegression/GESymbolicExpressionGrammar.cs
r18112 r18135 81 81 var constVal = rand.NextDouble() * 20.0 - 10.0; 82 82 constant.Name = string.Format("{0:0.000}", constVal); 83 constant.Value = constVal; 83 84 } while (constants.Any(c => c.Name == constant.Name)); // unlikely, but it could happen that the same constant value is sampled twice. so we resample if necessary. 84 85 constants.Add(constant);
Note: See TracChangeset
for help on using the changeset viewer.