Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/17/10 13:45:28 (14 years ago)
Author:
svonolfe
Message:

Added generic TS memory (#1343)

Location:
branches/TSMemory/HeuristicLab.Algorithms.TabuSearch/3.3
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/TSMemory/HeuristicLab.Algorithms.TabuSearch/3.3/HeuristicLab.Algorithms.TabuSearch-3.3.csproj

    r4065 r5128  
    106106  <ItemGroup>
    107107    <None Include="HeuristicLabAlgorithmsTabuSearchPlugin.cs.frame" />
     108    <Compile Include="MemoryCreator.cs" />
     109    <Compile Include="Memory.cs" />
    108110    <Compile Include="HeuristicLabAlgorithmsTabuSearchPlugin.cs" />
    109111    <Compile Include="Properties\AssemblyInfo.cs" />
  • branches/TSMemory/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearchMainLoop.cs

    r4722 r5128  
    153153      variableCreator.CollectedValues.Add(new ValueParameter<BoolValue>("EmptyNeighborhood", new BoolValue(false)));
    154154      variableCreator.CollectedValues.Add(new ValueParameter<ItemList<IItem>>("TabuList", new ItemList<IItem>()));
     155      variableCreator.CollectedValues.Add(new ValueParameter<Memory>("Memory", new Memory()));
    155156      variableCreator.CollectedValues.Add(new ValueParameter<DoubleValue>("BestQuality", new DoubleValue(0)));
    156157
Note: See TracChangeset for help on using the changeset viewer.