Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/10/08 19:31:57 (16 years ago)
Author:
gkronber
Message:

added new operators to add new rdf-statments and to query the stored graph (with statement templates). #261 (Items are stored multiple times in the result entries in the CEDMA DB)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Operators/InjectedVariableExtractor.cs

    r542 r547  
    5858        IOperatorGraph opGraph = (IOperatorGraph)PersistenceManager.RestoreFromGZip(database.GetAgentRawData(agentId));
    5959        OperatorLinkPatcher.LinkDatabase(opGraph, database);
    60         List<IVariable> vars = FindInjectedVariable(database, variableNames, opGraph);
     60        ItemList<StringData> clone = new ItemList<StringData>();
     61        foreach(StringData name in variableNames) clone.Add(name);
     62        List<IVariable> vars = FindInjectedVariable(database, clone, opGraph);
    6163        foreach(IVariable var in vars) {
    6264          scope.AddVariable(var);
Note: See TracChangeset for help on using the changeset viewer.