Free cookie consent management tool by TermsFeed Policy Generator

Changeset 404 for trunk/sources


Ignore:
Timestamp:
07/29/08 18:17:03 (16 years ago)
Author:
gkronber
Message:

fixed #207

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataAnalysis/DatasetParser.cs

    r397 r404  
    162162      this.metadata = new Dictionary<string, List<Token>>();
    163163      samplesList = new List<List<double>>();
     164    }
     165
     166    public void Reset() {
     167      metadata.Clear();
     168      samplesList.Clear();
    164169    }
    165170
  • trunk/sources/HeuristicLab.StructureIdentification/StructIdProblemInjectorView.cs

    r397 r404  
    8181          } catch(DataFormatException ex) {
    8282            ShowWarningMessageBox(ex);
    83             // not possible to parse strictly => try to parse non-strict
     83            // not possible to parse strictly => clear and try to parse non-strict
     84            parser.Reset();
    8485            parser.Import(openFileDialog.FileName, false);
    8586            success = true;
Note: See TracChangeset for help on using the changeset viewer.