Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/18/12 02:53:03 (12 years ago)
Author:
abeham
Message:

#1855:

  • Transformed LAP into a SingleObjectiveHeuristicOptimizationProblem
  • Added HungarianAlgorithm as separate algorithm for solving the problem
Location:
trunk/sources/HeuristicLab.Problems.LinearAssignment.Views/3.3
Files:
2 added
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.LinearAssignment.Views/3.3/HeuristicLab.Problems.LinearAssignment.Views-3.3.csproj

    r7874 r8022  
    102102  </PropertyGroup>
    103103  <ItemGroup>
     104    <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     105      <Private>False</Private>
     106    </Reference>
    104107    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
    105108      <HintPath>..\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
     
    114117  <ItemGroup>
    115118    <None Include="Plugin.cs.frame" />
    116     <Compile Include="LinearAssignmentProblemView.cs">
     119    <Compile Include="LAPAssignmentView.cs">
    117120      <SubType>UserControl</SubType>
    118121    </Compile>
    119     <Compile Include="LinearAssignmentProblemView.Designer.cs">
    120       <DependentUpon>LinearAssignmentProblemView.cs</DependentUpon>
     122    <Compile Include="LAPAssignmentView.Designer.cs">
     123      <DependentUpon>LAPAssignmentView.cs</DependentUpon>
    121124    </Compile>
    122125    <Compile Include="Plugin.cs" />
     
    148151      <Private>False</Private>
    149152    </ProjectReference>
     153    <ProjectReference Include="..\..\HeuristicLab.Data.Views\3.3\HeuristicLab.Data.Views-3.3.csproj">
     154      <Project>{72104A0B-90E7-42F3-9ABE-9BBBADD4B943}</Project>
     155      <Name>HeuristicLab.Data.Views-3.3</Name>
     156      <Private>False</Private>
     157    </ProjectReference>
    150158    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
    151159      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
     
    153161      <Private>False</Private>
    154162    </ProjectReference>
     163    <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj">
     164      <Project>{DBECB8B0-B166-4133-BAF1-ED67C3FD7FCA}</Project>
     165      <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name>
     166      <Private>False</Private>
     167    </ProjectReference>
    155168    <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.3\HeuristicLab.MainForm.WindowsForms-3.3.csproj">
    156169      <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project>
     
    163176      <Private>False</Private>
    164177    </ProjectReference>
    165     <ProjectReference Include="..\..\HeuristicLab.Optimization.Views\3.3\HeuristicLab.Optimization.Views-3.3.csproj">
    166       <Project>{662B4B15-8F4D-4AE5-B3EB-D91C215F5AF2}</Project>
    167       <Name>HeuristicLab.Optimization.Views-3.3</Name>
    168       <Private>False</Private>
    169     </ProjectReference>
    170     <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
    171       <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
    172       <Name>HeuristicLab.Optimization-3.3</Name>
     178    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
     179      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
     180      <Name>HeuristicLab.Operators-3.3</Name>
    173181      <Private>False</Private>
    174182    </ProjectReference>
  • trunk/sources/HeuristicLab.Problems.LinearAssignment.Views/3.3/Plugin.cs.frame

    r7937 r8022  
    2525  [Plugin("HeuristicLab.Problems.LinearAssignment.Views", "3.3.6.$WCREV$")]
    2626  [PluginFile("HeuristicLab.Problems.LinearAssignment.Views-3.3.dll", PluginFileType.Assembly)]
     27  [PluginDependency("HeuristicLab.Core", "3.3")]
    2728  [PluginDependency("HeuristicLab.Core.Views", "3.3")]
    2829  [PluginDependency("HeuristicLab.Data", "3.3")]
     30  [PluginDependency("HeuristicLab.Data.Views", "3.3")]
     31  [PluginDependency("HeuristicLab.Encodings.PermutationEncoding", "3.3")]
    2932  [PluginDependency("HeuristicLab.MainForm", "3.3")]
    3033  [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")]
    31   [PluginDependency("HeuristicLab.Optimization", "3.3")]
    32   [PluginDependency("HeuristicLab.Optimization.Views", "3.3")]
    3334  [PluginDependency("HeuristicLab.Problems.LinearAssignment", "3.3")]
    3435  public class HeuristicLabProblemsLinearAssignmentViewsPlugin : PluginBase {
Note: See TracChangeset for help on using the changeset viewer.