Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3098


Ignore:
Timestamp:
03/18/10 11:54:34 (14 years ago)
Author:
abeham
Message:

Added simulated annealing algorithm #923

Location:
trunk/sources
Files:
6 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/HeuristicLab.Algorithms.SimulatedAnnealing-3.3.csproj

    r3093 r3098  
    8282    <Compile Include="HeuristicLabAlgorithmsSimulatedAnnealingPlugin.cs" />
    8383    <Compile Include="Properties\AssemblyInfo.cs" />
     84    <Compile Include="SimulatedAnnealing.cs" />
    8485    <Compile Include="SimulatedAnnealingMainLoop.cs" />
    8586  </ItemGroup>
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/HeuristicLab.Encodings.PermutationEncoding-3.3.csproj

    r3074 r3098  
    111111    <Compile Include="Moves\ThreeOpt\ThreeOptMove.cs" />
    112112    <Compile Include="Moves\ThreeOpt\ThreeOptMoveGenerator.cs" />
     113    <Compile Include="Moves\TwoOpt\StochasticTwoOptSingleMoveGenerator.cs" />
    113114    <Compile Include="Moves\TwoOpt\ExhaustiveTwoOptMoveGenerator.cs">
    114115      <SubType>Code</SubType>
     
    117118      <SubType>Code</SubType>
    118119    </Compile>
    119     <Compile Include="Moves\TwoOpt\StochasticTwoOptMoveGenerator.cs" />
     120    <Compile Include="Moves\TwoOpt\StochasticTwoOptMultiMoveGenerator.cs" />
    120121    <Compile Include="Moves\TwoOpt\TwoOptMove.cs">
    121122      <SubType>Code</SubType>
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Moves/TwoOpt/ExhaustiveTwoOptMoveGenerator.cs

    r3053 r3098  
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     25using HeuristicLab.Optimization;
    2526
    2627namespace HeuristicLab.Encodings.PermutationEncoding {
    2728  [Item("ExhaustiveTwoOptMoveGenerator", "Generates all possible 2-opt moves from a given permutation.")]
    2829  [StorableClass]
    29   public class ExhaustiveTwoOptMoveGenerator : TwoOptMoveGenerator {
     30  public class ExhaustiveTwoOptMoveGenerator : TwoOptMoveGenerator, IExhaustiveMoveGenerator {
    3031    public static TwoOptMove[] Apply(Permutation permutation) {
    3132      int length = permutation.Length;
  • trunk/sources/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj

    r3097 r3098  
    8888    <Compile Include="Interfaces\ISolutionVisualizer.cs" />
    8989    <Compile Include="Interfaces\IDiscreteDoubleValueModifier.cs" />
     90    <Compile Include="Interfaces\IExhaustiveMoveGenerator.cs" />
    9091    <Compile Include="Interfaces\IMoveOperator.cs" />
     92    <Compile Include="Interfaces\IMultiMoveGenerator.cs" />
     93    <Compile Include="Interfaces\ISingleMoveGenerator.cs" />
    9194    <Compile Include="Interfaces\ISingleObjectiveMoveEvaluator.cs" />
    9295    <Compile Include="Interfaces\IMoveGenerator.cs" />
  • trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IMoveGenerator.cs

    r3044 r3098  
    2121
    2222using HeuristicLab.Core;
    23 using HeuristicLab.Parameters;
    2423
    2524namespace HeuristicLab.Optimization {
Note: See TracChangeset for help on using the changeset viewer.