Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/19/09 17:16:36 (15 years ago)
Author:
gkronber
Message:

worked on #419

  • added function to open and display any model
  • added 'hard-coded' implementation of offspring selection GP (work in progress)
  • added properties for max. size and max. height in StandardGP
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/Results.cs

    r1151 r1156  
    8686      if (store == null) yield break;
    8787      entries = new List<ResultsEntry>();
    88       var results = store.Query("<"+dataSetEntity + "> <" + Ontology.PredicateHasModel + "> ?Model ." + Environment.NewLine +
     88      var results = store.Query("<" + dataSetEntity + "> <" + Ontology.PredicateHasModel + "> ?Model ." + Environment.NewLine +
    8989        "?Model ?Attribute ?Value .")
    90         .GroupBy(x=>(Entity)x.Get("Model"));
     90        .GroupBy(x => (Entity)x.Get("Model"));
    9191      foreach (var modelBindings in results) {
    9292        ResultsEntry entry = new ResultsEntry(modelBindings.Key.Uri);
Note: See TracChangeset for help on using the changeset viewer.