Changeset 16974
- Timestamp:
- 05/21/19 10:01:31 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Problems.DynamicalSystemsModelling/3.3/Instances/DataDescriptor.cs
r16954 r16974 1 1 using System.Collections.Generic; 2 using System.Globalization; 2 3 using HeuristicLab.Data; 3 4 using HeuristicLab.Problems.Instances; … … 12 13 public IEnumerable<IntRange> TestEpisodes { get; internal set; } 13 14 public string FileName { get; internal set; } 15 public char Separator { get; internal set; } 16 public NumberFormatInfo NumberFormat { get; internal set; } 17 18 public DataDescriptor() { 19 Separator = '\0'; // all whitespace, \0 is especially handled in the text file parser 20 NumberFormat = NumberFormatInfo.InvariantInfo; 21 } 14 22 } 15 23 }
Note: See TracChangeset
for help on using the changeset viewer.