- Timestamp:
- 01/25/11 10:44:17 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/TableFileParser.cs
r5096 r5369 31 31 private const int BUFFER_SIZE = 1024; 32 32 private readonly char[] POSSIBLE_SEPARATORS = new char[] { ',', ';', '\t' }; 33 private const string VARIABLENAMES = "VARIABLENAMES";34 33 private Tokenizer tokenizer; 35 private List<string> variableNames;36 34 private List<List<double>> rowValues; 37 35 … … 55 53 } 56 54 55 private List<string> variableNames; 57 56 public IEnumerable<string> VariableNames { 58 57 get { … … 71 70 rowValues = new List<List<double>>(); 72 71 variableNames = new List<string>(); 73 }74 75 private void Reset() {76 variableNames.Clear();77 rowValues.Clear();78 72 } 79 73
Note: See TracChangeset
for help on using the changeset viewer.