Free cookie consent management tool by TermsFeed Policy Generator

Changeset 547 for trunk


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)

Location:
trunk/sources/HeuristicLab.CEDMA.Operators
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Operators/HeuristicLab.CEDMA.Operators.csproj

    r543 r547  
    5454  </ItemGroup>
    5555  <ItemGroup>
     56    <Compile Include="SelectSubjectsLiteral.cs" />
     57    <Compile Include="SelectProperties.cs" />
     58    <Compile Include="SelectSubjects.cs" />
     59    <Compile Include="MakeLiteralStatement.cs" />
     60    <Compile Include="MakeItemStatement.cs" />
    5661    <Compile Include="ResultsExtractor.cs" />
    5762    <Compile Include="InjectedVariableExtractor.cs" />
  • 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.