Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6121


Ignore:
Timestamp:
05/04/11 12:02:35 (13 years ago)
Author:
jhelm
Message:

#1329: Implemented basic functionalities of problemdefinition, encodings and primitive operators. A GA can already be applied on the problem to compute a solution it seems however that the current implementation isn't very efficient so the process takes some time.

Location:
branches/Scheduling
Files:
57 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/Scheduling/HeuristicLab 3.3.sln

    r6036 r6121  
    396396EndProject
    397397Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Operators.Views.GraphVisualization.Views-3.3", "HeuristicLab.Operators.Views.GraphVisualization.Views\3.3\HeuristicLab.Operators.Views.GraphVisualization.Views-3.3.csproj", "{0C39A349-1979-419A-89BD-E4E2F26BD287}"
     398EndProject
     399Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.Scheduling-3.3", "HeuristicLab.Problems.Scheduling\3.3\HeuristicLab.Problems.Scheduling-3.3.csproj", "{2BF1D639-1A74-44ED-AAAD-41ECD395AD93}"
     400EndProject
     401Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Problems.Scheduling.Views-3.3", "HeuristicLab.Problems.Scheduling.Views\3.3\HeuristicLab.Problems.Scheduling.Views-3.3.csproj", "{78763A4E-E163-48C2-98EB-709760D06F25}"
    398402EndProject
    399403Global
     
    18501854    {0C39A349-1979-419A-89BD-E4E2F26BD287}.Release|x86.ActiveCfg = Release|x86
    18511855    {0C39A349-1979-419A-89BD-E4E2F26BD287}.Release|x86.Build.0 = Release|x86
     1856    {2BF1D639-1A74-44ED-AAAD-41ECD395AD93}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     1857    {2BF1D639-1A74-44ED-AAAD-41ECD395AD93}.Debug|Any CPU.Build.0 = Debug|Any CPU
     1858    {2BF1D639-1A74-44ED-AAAD-41ECD395AD93}.Debug|x64.ActiveCfg = Debug|Any CPU
     1859    {2BF1D639-1A74-44ED-AAAD-41ECD395AD93}.Debug|x86.ActiveCfg = Debug|Any CPU
     1860    {2BF1D639-1A74-44ED-AAAD-41ECD395AD93}.Release|Any CPU.ActiveCfg = Release|Any CPU
     1861    {2BF1D639-1A74-44ED-AAAD-41ECD395AD93}.Release|Any CPU.Build.0 = Release|Any CPU
     1862    {2BF1D639-1A74-44ED-AAAD-41ECD395AD93}.Release|x64.ActiveCfg = Release|Any CPU
     1863    {2BF1D639-1A74-44ED-AAAD-41ECD395AD93}.Release|x86.ActiveCfg = Release|Any CPU
     1864    {78763A4E-E163-48C2-98EB-709760D06F25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     1865    {78763A4E-E163-48C2-98EB-709760D06F25}.Debug|Any CPU.Build.0 = Debug|Any CPU
     1866    {78763A4E-E163-48C2-98EB-709760D06F25}.Debug|x64.ActiveCfg = Debug|Any CPU
     1867    {78763A4E-E163-48C2-98EB-709760D06F25}.Debug|x86.ActiveCfg = Debug|Any CPU
     1868    {78763A4E-E163-48C2-98EB-709760D06F25}.Release|Any CPU.ActiveCfg = Release|Any CPU
     1869    {78763A4E-E163-48C2-98EB-709760D06F25}.Release|Any CPU.Build.0 = Release|Any CPU
     1870    {78763A4E-E163-48C2-98EB-709760D06F25}.Release|x64.ActiveCfg = Release|Any CPU
     1871    {78763A4E-E163-48C2-98EB-709760D06F25}.Release|x86.ActiveCfg = Release|Any CPU
    18521872  EndGlobalSection
    18531873  GlobalSection(SolutionProperties) = preSolution
  • branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3

    • Property svn:ignore set to
      Plugin.cs
  • branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/HeuristicLab.Problems.Scheduling-3.3.csproj

    r6041 r6121  
    4040    <Reference Include="System" />
    4141    <Reference Include="System.Core" />
     42    <Reference Include="System.Drawing" />
    4243    <Reference Include="System.Xml.Linq" />
    4344    <Reference Include="System.Data.DataSetExtensions" />
     
    4748  </ItemGroup>
    4849  <ItemGroup>
     50    <Compile Include="Analyzers\BestSchedulingSolutionAnalyzer.cs" />
     51    <Compile Include="Encodings\JobSequenceMatrix\Crossovers\JSMCrossover.cs" />
     52    <Compile Include="Encodings\JobSequenceMatrix\Crossovers\JSMSXXCrossover.cs" />
     53    <Compile Include="Encodings\JobSequenceMatrix\JSMDecoder.cs" />
     54    <Compile Include="Encodings\JobSequenceMatrix\JSMRandomCreator.cs" />
     55    <Compile Include="Encodings\JobSequenceMatrix\JSMEncoding.cs" />
     56    <Compile Include="Encodings\JobSequenceMatrix\Manipulators\JSMManipulator.cs" />
     57    <Compile Include="Encodings\JobSequenceMatrix\Manipulators\JSMSwapManipulator.cs" />
     58    <Compile Include="Encodings\JSSPCrossover.cs" />
     59    <Compile Include="Encodings\JSSPEncoding.cs" />
     60    <Compile Include="Encodings\JSSPCreator.cs" />
     61    <Compile Include="Encodings\JSSPManipulator.cs" />
     62    <Compile Include="Evaluators\MakespanEvaluator.cs" />
     63    <Compile Include="Interfaces\IJSMOperator.cs" />
     64    <Compile Include="Interfaces\IJSSPCrossover.cs" />
     65    <Compile Include="Interfaces\IJSSPManipulator.cs" />
     66    <Compile Include="Resource.cs" />
     67    <Compile Include="JSSPEvaluator.cs" />
     68    <Compile Include="SchedulingCreator.cs" />
     69    <Compile Include="JSSPJob.cs" />
     70    <Compile Include="JobShopSchedulingProblem.cs" />
     71    <Compile Include="JSSPTask.cs" />
     72    <Compile Include="SchedulingOperator.cs" />
     73    <Compile Include="SchedulingProblem.cs" />
     74    <Compile Include="Task.cs" />
     75    <Compile Include="Plugin.cs" />
    4976    <Compile Include="Properties\AssemblyInfo.cs" />
     77    <Compile Include="Schedule.cs" />
    5078  </ItemGroup>
    5179  <ItemGroup>
     
    5583  </ItemGroup>
    5684  <ItemGroup>
     85    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
     86      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
     87      <Name>HeuristicLab.Collections-3.3</Name>
     88    </ProjectReference>
     89    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
     90      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
     91      <Name>HeuristicLab.Common.Resources-3.3</Name>
     92    </ProjectReference>
     93    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
     94      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
     95      <Name>HeuristicLab.Common-3.3</Name>
     96    </ProjectReference>
     97    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
     98      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
     99      <Name>HeuristicLab.Core-3.3</Name>
     100    </ProjectReference>
     101    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
     102      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
     103      <Name>HeuristicLab.Data-3.3</Name>
     104    </ProjectReference>
     105    <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj">
     106      <Project>{DBECB8B0-B166-4133-BAF1-ED67C3FD7FCA}</Project>
     107      <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name>
     108    </ProjectReference>
     109    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
     110      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
     111      <Name>HeuristicLab.Operators-3.3</Name>
     112    </ProjectReference>
     113    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
     114      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
     115      <Name>HeuristicLab.Optimization-3.3</Name>
     116    </ProjectReference>
     117    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
     118      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
     119      <Name>HeuristicLab.Parameters-3.3</Name>
     120    </ProjectReference>
     121    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
     122      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
     123      <Name>HeuristicLab.Persistence-3.3</Name>
     124    </ProjectReference>
    57125    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
    58126      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
    59127      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
    60128    </ProjectReference>
     129  </ItemGroup>
     130  <ItemGroup>
     131    <Folder Include="Encodings\PriorityRulesVector\" />
    61132  </ItemGroup>
    62133  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • branches/Scheduling/HeuristicLab/3.3/Files.txt

    r6036 r6121  
    8282HeuristicLab.Problems.QuadraticAssignment\3.3:HeuristicLab.Problems.QuadraticAssignment-3.3.dll
    8383HeuristicLab.Problems.QuadraticAssignment.Views\3.3:HeuristicLab.Problems.QuadraticAssignment.Views-3.3.dll
     84HeuristicLab.Problems.Scheduling\3.3:HeuristicLab.Problems.Scheduling-3.3.dll
     85HeuristicLab.Problems.Scheduling.Views\3.3:HeuristicLab.Problems.Scheduling.Views-3.3.dll
    8486HeuristicLab.Problems.TestFunctions\3.3:HeuristicLab.Problems.TestFunctions-3.3.dll
    8587HeuristicLab.Problems.TestFunctions.Views\3.3:HeuristicLab.Problems.TestFunctions.Views-3.3.dll
Note: See TracChangeset for help on using the changeset viewer.