Changeset 16077
- Timestamp:
- 08/14/18 12:01:42 (6 years ago)
- Location:
- branches/2936_GQAPIntegration
- Files:
-
- 6 added
- 7 deleted
- 74 edited
- 13 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2936_GQAPIntegration/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj
r15688 r16077 99 99 </PropertyGroup> 100 100 <ItemGroup> 101 <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 102 <SpecificVersion>False</SpecificVersion> 103 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Optimization-3.3.dll</HintPath> 104 <Private>False</Private> 105 </Reference> 101 106 <Reference Include="System" /> 102 107 <Reference Include="System.Core"> … … 220 225 </Reference> 221 226 </ItemGroup> 222 <ItemGroup>223 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">224 <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>225 <Name>HeuristicLab.Optimization-3.3</Name>226 <Private>False</Private>227 </ProjectReference>228 </ItemGroup>229 227 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 230 228 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/GRASP/GRASP.cs
r15704 r16077 31 31 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 32 32 33 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms .GRASP{33 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms { 34 34 35 35 /// <summary> … … 159 159 Results.Add(new Result("EvaluatedSolutions", new IntValue(Context.EvaluatedSolutions))); 160 160 Results.Add(new Result("BestQuality", new DoubleValue(Context.BestQuality))); 161 Results.Add(new Result("BestSolution", typeof(GQAP Solution)));161 Results.Add(new Result("BestSolution", typeof(GQAPAssignment))); 162 162 } 163 163 … … 249 249 ((DoubleValue)result.Value).Value = Context.BestQuality; 250 250 else Results.Add(new Result("BestQuality", new DoubleValue(Context.BestQuality))); 251 if (Results.TryGetValue("BestSolution", out result)) 252 result.Value = Context.BestSolution; 253 else Results.Add(new Result("BestSolution", Context.BestSolution)); 251 if (Results.TryGetValue("BestSolution", out result)) { 252 var solAssign = (GQAPAssignment)result.Value; 253 if (solAssign != null) { 254 solAssign.Solution = Context.BestSolution; 255 } else { 256 result.Value = new GQAPAssignment(Context.BestSolution, Problem.ProblemInstance); 257 } 258 } else Results.Add(new Result("BestSolution", new GQAPAssignment(Context.BestSolution, Problem.ProblemInstance))); 254 259 255 260 try { -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/GRASP/GRASPContext.cs
r15572 r16077 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 27 28 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms .GRASP{28 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms { 29 29 [Item("GRASP+PR (GQAP) Context", "Context for GRASP+PR (GQAP).")] 30 30 [StorableClass] -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3.csproj
r15758 r16077 42 42 </PropertyGroup> 43 43 <ItemGroup> 44 <Reference Include="HeuristicLab.Analysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 45 <SpecificVersion>False</SpecificVersion> 46 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Analysis-3.3.dll</HintPath> 47 <Private>False</Private> 48 </Reference> 44 49 <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0"> 45 50 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Collections-3.3.dll</HintPath> … … 64 69 <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0"> 65 70 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Operators-3.3.dll</HintPath> 71 <Private>False</Private> 72 </Reference> 73 <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 74 <SpecificVersion>False</SpecificVersion> 75 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Optimization-3.3.dll</HintPath> 66 76 <Private>False</Private> 67 77 </Reference> … … 90 100 <Private>False</Private> 91 101 </Reference> 92 <Reference Include="localsolvernet, Version=7.5.0.0, Culture=neutral, processorArchitecture=AMD64">93 <SpecificVersion>False</SpecificVersion>94 <HintPath>..\..\..\..\trunk\bin\localsolvernet.dll</HintPath>95 <Private>False</Private>96 </Reference>97 <Reference Include="oplall, Version=12.7.0.0, Culture=neutral, PublicKeyToken=7906592bc7cc7340, processorArchitecture=MSIL">98 <SpecificVersion>False</SpecificVersion>99 <HintPath>..\..\..\..\trunk\bin\oplall.dll</HintPath>100 <Private>False</Private>101 </Reference>102 102 <Reference Include="System" /> 103 103 <Reference Include="System.Core" /> … … 106 106 </ItemGroup> 107 107 <ItemGroup> 108 <Compile Include="CPLEX\CplexSolver.cs" /> 109 <Compile Include="CPLEX\GQAP-FY.cs" /> 110 <Compile Include="CPLEX\GQAP-KB.cs" /> 111 <Compile Include="CPLEX\GQAPDataSource.cs" /> 112 <Compile Include="CPLEX\CplexContext.cs" /> 113 <Compile Include="Evolutionary\ESContext.cs" /> 114 <Compile Include="Evolutionary\ESGQAPSolution.cs" /> 115 <Compile Include="Evolutionary\EvolutionStrategy.cs" /> 116 <Compile Include="Evolutionary\OSGAContext.cs" /> 117 <Compile Include="Evolutionary\OSGA.cs" /> 108 <None Include="Properties\AssemblyInfo.cs.frame" /> 118 109 <Compile Include="Infrastructure\Algorithms\StochasticAlgorithm.cs" /> 119 110 <Compile Include="Infrastructure\Contexts\StochasticContext.cs" /> … … 122 113 <Compile Include="GRASP\GRASPContext.cs" /> 123 114 <Compile Include="GRASP\GRASP.cs" /> 124 <Compile Include="LAHC\pLAHCContext.cs" />125 <Compile Include="LAHC\pLAHC.cs" />126 <Compile Include="LAHC\LAHC.cs" />127 <Compile Include="LAHC\LAHCContext.cs" />128 <Compile Include="LocalSearch\LocalSearchContext.cs" />129 115 <Compile Include="Infrastructure\Interfaces.cs" /> 130 <Compile Include="LocalSearch\IteratedLS.cs" /> 131 <Compile Include="LocalSearch\MultistartLS.cs" /> 132 <Compile Include="LocalSolverNet\GQAPListSolver.cs" /> 133 <Compile Include="LocalSolverNet\GQAPIntegerSolver.cs" /> 134 <Compile Include="LocalSolverNet\LocalSolverContext.cs" /> 135 <Compile Include="LocalSolverNet\GQAPBinarySolver.cs" /> 116 <None Include="Plugin.cs.frame" /> 136 117 <Compile Include="Plugin.cs" /> 137 118 <Compile Include="Infrastructure\Contexts\SingleSolutionContext.cs" /> … … 139 120 <Compile Include="Properties\AssemblyInfo.cs" /> 140 121 <Compile Include="Infrastructure\SingleObjectiveSolutionScope.cs" /> 141 <Compile Include="RandomSearch\RandomSearchContext.cs" />142 <Compile Include="RandomSearch\RandomSearch.cs" />143 122 </ItemGroup> 144 123 <ItemGroup> 145 <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">146 <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>147 <Name>HeuristicLab.Analysis-3.3</Name>148 <Private>False</Private>149 </ProjectReference>150 124 <ProjectReference Include="..\..\HeuristicLab.Encodings.IntegerVectorEncoding\3.3\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj"> 151 125 <Project>{ddfb14dd-2a85-493c-a52d-e69729bbaeb0}</Project> 152 126 <Name>HeuristicLab.Encodings.IntegerVectorEncoding-3.3</Name> 153 <Private>False</Private>154 </ProjectReference>155 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">156 <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>157 <Name>HeuristicLab.Optimization-3.3</Name>158 127 <Private>False</Private> 159 128 </ProjectReference> -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Plugin.cs
r15574 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 24 24 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms { 25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms", "3.3.1 4.1")]25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms", "3.3.15.15890")] 26 26 [PluginFile("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3.dll", PluginFileType.Assembly)] 27 27 [PluginDependency("HeuristicLab.Analysis", "3.3")] … … 40 40 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 41 41 [PluginDependency("HeuristicLab.Random", "3.3")] 42 [PluginDependency("CPLEX Transport", "12.7.0")] 43 [PluginDependency("LocalSolver 7.5 Transport", "7.5")] 44 public class Plugin : PluginBase { 45 } 42 public class HeuristicLabProblemsGeneralizedQuadraticAssignmentAlgorithmsPlugin : PluginBase { } 46 43 } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Properties/AssemblyInfo.cs
r15553 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 31 31 [assembly: AssemblyCompany("HEAL")] 32 32 [assembly: AssemblyProduct("HeuristicLab")] 33 [assembly: AssemblyCopyright("(c) 2002-201 7HEAL")]33 [assembly: AssemblyCopyright("(c) 2002-2018 HEAL")] 34 34 [assembly: AssemblyTrademark("")] 35 35 [assembly: AssemblyCulture("")] … … 54 54 // [assembly: AssemblyVersion("1.0.*")] 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3.1 4.1")]56 [assembly: AssemblyFileVersion("3.3.15.15890")] -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances/3.3/Plugin.cs
r15579 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 24 24 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances { 25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances", "3.3.1 4.0")]25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances", "3.3.15.15905")] 26 26 [PluginFile("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances-3.3.dll", PluginFileType.Assembly)] 27 27 [PluginDependency("HeuristicLab.Common", "3.3")] 28 28 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 29 29 [PluginDependency("HeuristicLab.Problems.Instances.CordeauGQAP", "3.3")] 30 public class Plugin : PluginBase { 31 } 30 public class HeuristicLabProblemsGeneralizedQuadraticAssignmentInstances : PluginBase { } 32 31 } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances/3.3/Plugin.cs.frame
r15579 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 24 24 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances { 25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances", "3.3.1 4.0")]25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances", "3.3.15.$WCREV$")] 26 26 [PluginFile("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances-3.3.dll", PluginFileType.Assembly)] 27 27 [PluginDependency("HeuristicLab.Common", "3.3")] 28 28 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 29 29 [PluginDependency("HeuristicLab.Problems.Instances.CordeauGQAP", "3.3")] 30 public class Plugin : PluginBase { 31 } 30 public class HeuristicLabProblemsGeneralizedQuadraticAssignmentInstances : PluginBase { } 32 31 } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances/3.3/Properties/AssemblyInfo.cs
r15579 r16077 53 53 // [assembly: AssemblyVersion("1.0.*")] 54 54 [assembly: AssemblyVersion("3.3.0.0")] 55 [assembly: AssemblyFileVersion("3.3. 0.0")]55 [assembly: AssemblyFileVersion("3.3.15.15905")] -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Instances/3.3/Properties/AssemblyInfo.cs.frame
r15579 r16077 53 53 // [assembly: AssemblyVersion("1.0.*")] 54 54 [assembly: AssemblyVersion("3.3.0.0")] 55 [assembly: AssemblyFileVersion("3.3. 0.0")]55 [assembly: AssemblyFileVersion("3.3.15.$WCREV$")] -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views/3.3/GQAPAssignmentArchiveView.Designer.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views/3.3/GQAPAssignmentArchiveView.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views/3.3/GQAPAssignmentView.Designer.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views/3.3/GQAPAssignmentView.cs
r15510 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 45 45 public GQAPAssignmentView() { 46 46 InitializeComponent(); 47 recalculateButton.Text = string.Empty; 47 48 recalculateButton.Image = VSImageLibrary.Refresh; 48 49 } … … 50 51 #region Register Content Events 51 52 protected override void DeregisterContentEvents() { 52 Content.PropertyChanged -= new PropertyChangedEventHandler(Content_PropertyChanged); 53 DeregisterSolutionEvents(); 54 Content.PropertyChanged -= Content_PropertyChanged; 53 55 base.DeregisterContentEvents(); 54 56 } 55 57 protected override void RegisterContentEvents() { 56 58 base.RegisterContentEvents(); 57 Content.PropertyChanged += new PropertyChangedEventHandler(Content_PropertyChanged); 59 Content.PropertyChanged += Content_PropertyChanged; 60 RegisterSolutionEvents(); 61 } 62 63 private void DeregisterSolutionEvents() { 64 if (Content.Solution != null) Content.Solution.PropertyChanged -= Content_SolutionPropertyChanged; 65 } 66 private void RegisterSolutionEvents() { 67 if (Content.Solution != null) Content.Solution.PropertyChanged += Content_SolutionPropertyChanged; 58 68 } 59 69 #endregion … … 63 73 UpdateEvaluation(); 64 74 UpdateAssignment(); 65 if (Content != null ) assignmentView.Content = Content.Assignment;75 if (Content != null && Content.Solution != null) assignmentView.Content = Content.Solution.Assignment; 66 76 else assignmentView.Content = null; 67 77 } … … 69 79 protected override void SetEnabledStateOfControls() { 70 80 base.SetEnabledStateOfControls(); 81 recalculateButton.Enabled = Content != null && Content.Solution != null && !Locked && !ReadOnly; 71 82 } 72 83 … … 74 85 private void Content_PropertyChanged(object sender, PropertyChangedEventArgs e) { 75 86 switch (e.PropertyName) { 76 case nameof(Content.Evaluation): UpdateEvaluation(); break; 77 case nameof(Content.Assignment): UpdateAssignment(); break; 87 case nameof(Content.Solution): RegisterSolutionEvents(); UpdateEvaluation(); UpdateAssignment(); break; 78 88 case nameof(Content.ProblemInstance): UpdateEvaluation(); UpdateAssignment(); break; 79 89 default: break; 80 90 } 91 SetEnabledStateOfControls(); 92 } 93 94 private void Content_SolutionPropertyChanged(object sender, PropertyChangedEventArgs e) { 95 switch (e.PropertyName) { 96 case nameof(Content.Solution.Assignment): UpdateAssignment(); break; 97 case nameof(Content.Solution.Evaluation): UpdateEvaluation(); break; 98 default: break; 99 } 81 100 } 82 101 … … 88 107 #region Event Handlers 89 108 private void assignmentTreeView_AfterSelect(object sender, TreeViewEventArgs e) { 90 if (Content != null ) {109 if (Content != null && Content.Solution != null) { 91 110 assignmentTreeView.BeginUpdate(); 92 111 try { … … 120 139 if (InvokeRequired) Invoke((Action)UpdateEvaluation); 121 140 else { 122 if (Content == null ) {141 if (Content == null || Content.Solution == null) { 123 142 qualityLabel.Text = "-"; 124 143 flowDistanceQualityLabel.Text = "-"; … … 126 145 overbookedCapacityLabel.Text = "-"; 127 146 } else { 128 qualityLabel.Text = Content.ProblemInstance.ToSingleObjective(Content. Evaluation).ToString();129 flowDistanceQualityLabel.Text = Content. Evaluation.FlowCosts.ToString();130 installationQualityLabel.Text = Content. Evaluation.InstallationCosts.ToString();131 overbookedCapacityLabel.Text = Content. Evaluation.ExcessDemand.ToString();147 qualityLabel.Text = Content.ProblemInstance.ToSingleObjective(Content.Solution.Evaluation).ToString(); 148 flowDistanceQualityLabel.Text = Content.Solution.Evaluation.FlowCosts.ToString(); 149 installationQualityLabel.Text = Content.Solution.Evaluation.InstallationCosts.ToString(); 150 overbookedCapacityLabel.Text = Content.Solution.Evaluation.ExcessDemand.ToString(); 132 151 } 133 152 } … … 138 157 else { 139 158 assignmentTreeView.Nodes.Clear(); 140 if (Content != null ) {141 IntegerVector assignment = Content. Assignment;159 if (Content != null && Content.Solution != null) { 160 IntegerVector assignment = Content.Solution.Assignment; 142 161 Dictionary<int, TreeNode> locationNodes = new Dictionary<int, TreeNode>(); 143 162 for (int i = 0; i < assignment.Length; i++) { … … 169 188 var installationCosts = new Dictionary<EquipmentNode, double>(); 170 189 foreach (var node in GetAllSubNodes(assignmentTreeView.Nodes).OfType<EquipmentNode>()) { 171 int location = Content. Assignment[node.Equipment];190 int location = Content.Solution.Assignment[node.Equipment]; 172 191 installationCosts[node] = Content.ProblemInstance.InstallationCosts[node.Equipment, location]; 173 192 } … … 216 235 217 236 private void ColorByWeight(LocationNode selectedNode) { 218 var equipments = new HashSet<int>(Content. Assignment.Select((v, i) => new { Index = i, Value = v })237 var equipments = new HashSet<int>(Content.Solution.Assignment.Select((v, i) => new { Index = i, Value = v }) 219 238 .Where(x => x.Value == selectedNode.Location).Select(x => x.Index)); 220 239 var rowSums = new Dictionary<int, double>(equipments.Count); … … 279 298 280 299 private void recalculateButton_Click(object sender, EventArgs e) { 281 Content. Evaluation = Content.ProblemInstance.Evaluate(Content.Assignment);300 Content.Solution.Evaluation = Content.ProblemInstance.Evaluate(Content.Solution.Assignment); 282 301 } 283 302 } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views/3.3/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views-3.3.csproj
r15688 r16077 135 135 <Private>False</Private> 136 136 </ProjectReference> 137 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">138 <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>139 <Name>HeuristicLab.Optimization-3.3</Name>140 <Private>False</Private>141 </ProjectReference>142 137 <ProjectReference Include="..\..\HeuristicLab.Problems.GeneralizedQuadraticAssignment\3.3\HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3.csproj"> 143 138 <Project>{C739E6D2-5680-4804-A810-8017DA0C238F}</Project> -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views/3.3/Plugin.cs.frame
r13418 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 5Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 24 24 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views { 25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views", "3.3.1 3.$WCREV$")]25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views", "3.3.15.$WCREV$")] 26 26 [PluginFile("HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views-3.3.dll", PluginFileType.Assembly)] 27 27 [PluginDependency("HeuristicLab.Collections", "3.3")] -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views/3.3/Properties/AssemblyInfo.cs.frame
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 31 31 [assembly: AssemblyCompany("HEAL")] 32 32 [assembly: AssemblyProduct("HeuristicLab")] 33 [assembly: AssemblyCopyright("(c) 2002-201 7HEAL")]33 [assembly: AssemblyCopyright("(c) 2002-2018 HEAL")] 34 34 [assembly: AssemblyTrademark("")] 35 35 [assembly: AssemblyCulture("")] … … 54 54 // [assembly: AssemblyVersion("1.0.*")] 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3.1 4.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.15.$WCREV$")] -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Evaluation/Evaluation.cs
r15553 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Evaluation/GQAPNMoveEvaluator.cs
r15511 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GQAP.cs
r15510 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 37 37 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 38 38 [Item("Generalized Quadratic Assignment Problem (GQAP)", "The Generalized Quadratic Assignment Problem (GQAP) is a generalization of the QAP in that it allows to assign multiple facilities (here called equipment) to a single location. The problem is described in Lee, C.G., and Ma, Z. 2003. The Generalized Quadratic Assignment Problem. Technical Report M5S 3G8, University of Toronto, Canada.")] 39 [Creatable( "Problems")]39 [Creatable(CreatableAttribute.Categories.CombinatorialProblems)] 40 40 [StorableClass] 41 41 public sealed class GQAP : SingleObjectiveBasicProblem<IntegerVectorEncoding>, … … 140 140 if (item == null) bestResult.Value = new GQAPAssignment((IntegerVector)bestVector.Clone(), ProblemInstance, bestEvaluation); 141 141 else if (ProblemInstance.ToSingleObjective(bestEvaluation) 142 < ProblemInstance.ToSingleObjective(item. Evaluation)) {142 < ProblemInstance.ToSingleObjective(item.Solution.Evaluation)) { 143 143 item.ProblemInstance = ProblemInstance; 144 item.Assignment = (IntegerVector)bestVector.Clone(); 145 item.Evaluation = bestEvaluation; 144 item.Solution = new GQAPSolution((IntegerVector)bestVector.Clone(), bestEvaluation); 146 145 } 147 146 } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GQAPAssignment.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 32 32 33 33 [Storable] 34 private IntegerVector assignment;35 public IntegerVector Assignment{36 get { return assignment; }34 private GQAPSolution solution; 35 public GQAPSolution Solution { 36 get { return solution; } 37 37 set { 38 if (assignment == value) return; 39 assignment = value; 40 OnPropertyChanged(nameof(Assignment)); 41 } 42 } 43 44 [Storable] 45 private Evaluation evaluation; 46 public Evaluation Evaluation { 47 get { return evaluation; } 48 set { 49 if (evaluation == value) return; 50 evaluation = value; 51 OnPropertyChanged(nameof(Evaluation)); 38 if (solution == value) return; 39 solution = value; 40 OnPropertyChanged(nameof(Solution)); 52 41 } 53 42 } … … 68 57 private GQAPAssignment(GQAPAssignment original, Cloner cloner) 69 58 : base(original, cloner) { 70 assignment = cloner.Clone(original.assignment); 71 evaluation = cloner.Clone(original.evaluation); 59 solution = cloner.Clone(original.solution); 72 60 problemInstance = cloner.Clone(original.problemInstance); 73 61 } … … 76 64 public GQAPAssignment(IntegerVector assignment, GQAPInstance problemInstance, Evaluation evaluation) 77 65 : base() { 78 this.assignment = assignment; 79 this.evaluation = evaluation; 66 this.solution = new GQAPSolution(assignment, evaluation); 67 this.problemInstance = problemInstance; 68 } 69 public GQAPAssignment(GQAPSolution solution, GQAPInstance problemInstance) 70 : base() { 71 this.solution = solution; 80 72 this.problemInstance = problemInstance; 81 73 } -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GQAPAssignmentArchive.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GQAPInstance.cs
r15713 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GQAPSolution.cs
r15553 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3.csproj
r15719 r16077 41 41 </PropertyGroup> 42 42 <ItemGroup> 43 <Reference Include="HeuristicLab.Analysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 44 <SpecificVersion>False</SpecificVersion> 45 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Analysis-3.3.dll</HintPath> 46 <Private>False</Private> 47 </Reference> 43 48 <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0"> 44 49 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Collections-3.3.dll</HintPath> … … 63 68 <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0"> 64 69 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Operators-3.3.dll</HintPath> 70 <Private>False</Private> 71 </Reference> 72 <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 73 <SpecificVersion>False</SpecificVersion> 74 <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Optimization-3.3.dll</HintPath> 65 75 <Private>False</Private> 66 76 </Reference> … … 148 158 <Compile Include="Operators\Manipulators\SwapEquipmentManipluator.cs" /> 149 159 <Compile Include="Operators\Manipulators\SwapLocationManipulator.cs" /> 150 <Compile Include="Operators\PopulationReducers\GQAPQualitySimilarityReducer.cs" />151 160 <Compile Include="Operators\Shakers\NMoveShakingOperator.cs" /> 152 161 <Compile Include="Plugin.cs" /> … … 158 167 </ItemGroup> 159 168 <ItemGroup> 160 <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">161 <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>162 <Name>HeuristicLab.Analysis-3.3</Name>163 <Private>False</Private>164 </ProjectReference>165 169 <ProjectReference Include="..\..\HeuristicLab.Encodings.IntegerVectorEncoding\3.3\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj"> 166 170 <Project>{ddfb14dd-2a85-493c-a52d-e69729bbaeb0}</Project> 167 171 <Name>HeuristicLab.Encodings.IntegerVectorEncoding-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>173 172 <Private>False</Private> 174 173 </ProjectReference> -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPCrossover.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPLocalImprovementOperator.cs
r15562 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPManipulator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPMoveEvaluator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPMoveOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPNMoveEvaluator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPNMoveOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Operator/IGQAPSolutionCreator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IAssignmentAwareGQAPOperator.cs
r15506 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IBestKnownQualityAwareGQAPOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IBestKnownSolutionAwareGQAPOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IBestKnownSolutionsAwareGQAPOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IMoveQualityAwareGQAPOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IProblemInstanceAwareGQAPOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IQualitiesAwareGQAPOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Interfaces/Parameter/IQualityAwareGQAPOperator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/ExhaustiveOneMoveGenerator.cs
r15562 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/GQAPMoveGenerator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/GQAPNMoveGenerator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMove.cs
r15511 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMoveAbsoluteAttribute.cs
r15511 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMoveMaker.cs
r15511 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMoveTabuChecker.cs
r15511 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/NMoveTabuMaker.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/StochasticNMoveMultiMoveGenerator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Moves/StochasticNMoveSingleMoveGenerator.cs
r15572 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Crossovers/CordeauCrossover.cs
r15506 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Crossovers/DiscreteLocationCrossover.cs
r15572 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Crossovers/GQAPCrossover.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Crossovers/GQAPPathRelinking.cs
r15572 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Crossovers/MultiGQAPCrossover.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/LocalImprovers/ApproximateLocalSearch.cs
r15558 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/LocalImprovers/OneOptLocalSearch.cs
r15562 r16077 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Manipulators/DemandEquivalentSwapEquipmentManipluator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Manipulators/GQAPManipulator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Manipulators/MultiGQAPManipulator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Manipulators/RelocateEquipmentManipluator.cs
r15572 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Manipulators/SwapEquipmentManipluator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Manipulators/SwapLocationManipulator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Shakers/NMoveShakingOperator.cs
r15506 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Plugin.cs.frame
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 5Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 24 24 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment { 25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment", "3.3.1 3.$WCREV$")]25 [Plugin("HeuristicLab.Problems.GeneralizedQuadraticAssignment", "3.3.15.$WCREV$")] 26 26 [PluginFile("HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3.dll", PluginFileType.Assembly)] 27 27 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Properties/AssemblyInfo.cs.frame
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 32 32 [assembly: AssemblyCompany("HEAL")] 33 33 [assembly: AssemblyProduct("HeuristicLab")] 34 [assembly: AssemblyCopyright("(c) 2002-201 7HEAL")]34 [assembly: AssemblyCopyright("(c) 2002-2018 HEAL")] 35 35 [assembly: AssemblyTrademark("")] 36 36 [assembly: AssemblyCulture("")] … … 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 56 [assembly: AssemblyVersion("3.3.0.0")] 57 [assembly: AssemblyFileVersion("3.3.1 4.$WCREV$")]57 [assembly: AssemblyFileVersion("3.3.15.$WCREV$")] -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/SolutionCreators/GQAPSolutionCreator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/SolutionCreators/GQAPStochasticSolutionCreator.cs
r15504 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/SolutionCreators/GreedyRandomizedSolutionCreator.cs
r15558 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/SolutionCreators/RandomButFeasibleSolutionCreator.cs
r15555 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/SolutionCreators/SlackMinimizationSolutionCreator.cs
r15555 r16077 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 7Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2936_GQAPIntegration/HeuristicLab.Tests/HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3/ApproximateLocalSearchTest.cs
r16073 r16077 1 using System.Linq; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System.Linq; 2 23 using System.Threading; 3 24 using HeuristicLab.Data; 4 25 using HeuristicLab.Encodings.IntegerVectorEncoding; 5 using HeuristicLab.Problems.GeneralizedQuadraticAssignment;6 26 using HeuristicLab.Random; 7 27 using Microsoft.VisualStudio.TestTools.UnitTesting; 8 28 9 namespace UnitTests {29 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Tests { 10 30 [TestClass] 11 31 public class ApproximateLocalSearchTest { -
branches/2936_GQAPIntegration/HeuristicLab.Tests/HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3/CordeauCrossoverTest.cs
r16073 r16077 23 23 using System.Threading; 24 24 using HeuristicLab.Data; 25 using HeuristicLab.Problems.GeneralizedQuadraticAssignment;26 25 using HeuristicLab.Problems.Instances.CordeauGQAP; 27 26 using HeuristicLab.Random; 28 27 using Microsoft.VisualStudio.TestTools.UnitTesting; 29 28 30 namespace UnitTests {29 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Tests { 31 30 [TestClass] 32 31 public class CordeauCrossoverTest { -
branches/2936_GQAPIntegration/HeuristicLab.Tests/HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3/GQAPNMoveEvaluatorTest.cs
r16073 r16077 23 23 using HeuristicLab.Data; 24 24 using HeuristicLab.Encodings.IntegerVectorEncoding; 25 using HeuristicLab.Problems.GeneralizedQuadraticAssignment;26 25 using HeuristicLab.Random; 27 26 using Microsoft.VisualStudio.TestTools.UnitTesting; 28 27 29 namespace UnitTests {28 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Tests { 30 29 /// <summary> 31 30 ///This is a test class for GQAPNMoveEvaluatorTest and is intended -
branches/2936_GQAPIntegration/HeuristicLab.Tests/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3/GRASPTest.cs
r16073 r16077 23 23 using System.Linq; 24 24 using HeuristicLab.Data; 25 using HeuristicLab.Problems.GeneralizedQuadraticAssignment;26 using HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.GRASP;27 25 using HeuristicLab.Problems.Instances.CordeauGQAP; 28 26 using Microsoft.VisualStudio.TestTools.UnitTesting; 29 27 30 namespace UnitTests {28 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.Tests { 31 29 [TestClass] 32 30 public class GRASPTest { -
branches/2936_GQAPIntegration/HeuristicLab.Tests/HeuristicLab.Tests.csproj
r16023 r16077 21 21 <DebugType>full</DebugType> 22 22 <Optimize>false</Optimize> 23 <OutputPath>..\ bin\</OutputPath>23 <OutputPath>..\..\..\trunk\bin\</OutputPath> 24 24 <DefineConstants>DEBUG;TRACE</DefineConstants> 25 25 <ErrorReport>prompt</ErrorReport> … … 30 30 <DebugType>pdbonly</DebugType> 31 31 <Optimize>true</Optimize> 32 <OutputPath>..\ bin\</OutputPath>32 <OutputPath>..\..\..\trunk\bin\</OutputPath> 33 33 <DefineConstants>TRACE</DefineConstants> 34 34 <ErrorReport>prompt</ErrorReport> … … 44 44 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 45 45 <DebugSymbols>true</DebugSymbols> 46 <OutputPath>..\ bin\</OutputPath>46 <OutputPath>..\..\..\trunk\bin\</OutputPath> 47 47 <DefineConstants>DEBUG;TRACE</DefineConstants> 48 48 <DebugType>full</DebugType> … … 60 60 </PropertyGroup> 61 61 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 62 <OutputPath>..\ bin\</OutputPath>62 <OutputPath>..\..\..\trunk\bin\</OutputPath> 63 63 <DefineConstants>TRACE</DefineConstants> 64 64 <Optimize>true</Optimize> … … 78 78 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> 79 79 <DebugSymbols>true</DebugSymbols> 80 <OutputPath>..\ bin\</OutputPath>80 <OutputPath>..\..\..\trunk\bin\</OutputPath> 81 81 <DefineConstants>DEBUG;TRACE</DefineConstants> 82 82 <DebugType>full</DebugType> … … 94 94 </PropertyGroup> 95 95 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> 96 <OutputPath>..\ bin\</OutputPath>96 <OutputPath>..\..\..\trunk\bin\</OutputPath> 97 97 <DefineConstants>TRACE</DefineConstants> 98 98 <Optimize>true</Optimize> … … 110 110 <ItemGroup> 111 111 <Reference Include="ALGLIB-3.7.0"> 112 <HintPath>..\ bin\ALGLIB-3.7.0.dll</HintPath>112 <HintPath>..\..\..\trunk\bin\ALGLIB-3.7.0.dll</HintPath> 113 113 <Private>False</Private> 114 114 </Reference> 115 115 <Reference Include="HeuristicLab.Algorithms.ALPS-3.3"> 116 <HintPath>..\ bin\HeuristicLab.Algorithms.ALPS-3.3.dll</HintPath>116 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.ALPS-3.3.dll</HintPath> 117 117 <Private>False</Private> 118 118 </Reference> 119 119 <Reference Include="HeuristicLab.Algorithms.DataAnalysis-3.4"> 120 <HintPath>..\ bin\HeuristicLab.Algorithms.DataAnalysis-3.4.dll</HintPath>120 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.DataAnalysis-3.4.dll</HintPath> 121 121 <Private>False</Private> 122 122 </Reference> 123 123 <Reference Include="HeuristicLab.Algorithms.EvolutionStrategy-3.3"> 124 <HintPath>..\ bin\HeuristicLab.Algorithms.EvolutionStrategy-3.3.dll</HintPath>124 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.EvolutionStrategy-3.3.dll</HintPath> 125 125 <Private>False</Private> 126 126 </Reference> 127 127 <Reference Include="HeuristicLab.Algorithms.GeneticAlgorithm-3.3"> 128 <HintPath>..\ bin\HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll</HintPath>128 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll</HintPath> 129 129 <Private>False</Private> 130 130 </Reference> 131 131 <Reference Include="HeuristicLab.Algorithms.LocalSearch-3.3"> 132 <HintPath>..\ bin\HeuristicLab.Algorithms.LocalSearch-3.3.dll</HintPath>132 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.LocalSearch-3.3.dll</HintPath> 133 133 <Private>False</Private> 134 134 </Reference> 135 135 <Reference Include="HeuristicLab.Algorithms.OffspringSelectionEvolutionStrategy-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 136 <HintPath>..\ bin\HeuristicLab.Algorithms.OffspringSelectionEvolutionStrategy-3.3.dll</HintPath>136 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.OffspringSelectionEvolutionStrategy-3.3.dll</HintPath> 137 137 <Private>False</Private> 138 138 </Reference> 139 139 <Reference Include="HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3"> 140 <HintPath>..\ bin\HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3.dll</HintPath>140 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3.dll</HintPath> 141 141 <Private>False</Private> 142 142 </Reference> 143 143 <Reference Include="HeuristicLab.Algorithms.ParameterlessPopulationPyramid-3.3"> 144 144 <SpecificVersion>False</SpecificVersion> 145 <HintPath>..\ bin\HeuristicLab.Algorithms.ParameterlessPopulationPyramid-3.3.dll</HintPath>145 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.ParameterlessPopulationPyramid-3.3.dll</HintPath> 146 146 <Private>False</Private> 147 147 </Reference> 148 148 <Reference Include="HeuristicLab.Algorithms.ParticleSwarmOptimization-3.3"> 149 <HintPath>..\ bin\HeuristicLab.Algorithms.ParticleSwarmOptimization-3.3.dll</HintPath>149 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.ParticleSwarmOptimization-3.3.dll</HintPath> 150 150 <Private>False</Private> 151 151 </Reference> 152 152 <Reference Include="HeuristicLab.Algorithms.RAPGA-3.3"> 153 <HintPath>..\ bin\HeuristicLab.Algorithms.RAPGA-3.3.dll</HintPath>153 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.RAPGA-3.3.dll</HintPath> 154 154 <Private>False</Private> 155 155 </Reference> 156 156 <Reference Include="HeuristicLab.Algorithms.ScatterSearch-3.3"> 157 <HintPath>..\ bin\HeuristicLab.Algorithms.ScatterSearch-3.3.dll</HintPath>157 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.ScatterSearch-3.3.dll</HintPath> 158 158 <Private>False</Private> 159 159 </Reference> 160 160 <Reference Include="HeuristicLab.Algorithms.SimulatedAnnealing-3.3"> 161 <HintPath>..\ bin\HeuristicLab.Algorithms.SimulatedAnnealing-3.3.dll</HintPath>161 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.SimulatedAnnealing-3.3.dll</HintPath> 162 162 <Private>False</Private> 163 163 </Reference> 164 164 <Reference Include="HeuristicLab.Algorithms.TabuSearch-3.3"> 165 <HintPath>..\ bin\HeuristicLab.Algorithms.TabuSearch-3.3.dll</HintPath>165 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.TabuSearch-3.3.dll</HintPath> 166 166 <Private>False</Private> 167 167 </Reference> 168 168 <Reference Include="HeuristicLab.Algorithms.VariableNeighborhoodSearch-3.3"> 169 <HintPath>..\ bin\HeuristicLab.Algorithms.VariableNeighborhoodSearch-3.3.dll</HintPath>169 <HintPath>..\..\..\trunk\bin\HeuristicLab.Algorithms.VariableNeighborhoodSearch-3.3.dll</HintPath> 170 170 <Private>False</Private> 171 171 </Reference> 172 172 <Reference Include="HeuristicLab.Analysis-3.3"> 173 <HintPath>..\ bin\HeuristicLab.Analysis-3.3.dll</HintPath>173 <HintPath>..\..\..\trunk\bin\HeuristicLab.Analysis-3.3.dll</HintPath> 174 174 <Private>False</Private> 175 175 </Reference> 176 176 <Reference Include="HeuristicLab.Collections-3.3"> 177 <HintPath>..\ bin\HeuristicLab.Collections-3.3.dll</HintPath>177 <HintPath>..\..\..\trunk\bin\HeuristicLab.Collections-3.3.dll</HintPath> 178 178 <Private>False</Private> 179 179 </Reference> 180 180 <Reference Include="HeuristicLab.Common-3.3"> 181 <HintPath>..\ bin\HeuristicLab.Common-3.3.dll</HintPath>181 <HintPath>..\..\..\trunk\bin\HeuristicLab.Common-3.3.dll</HintPath> 182 182 <Private>False</Private> 183 183 </Reference> 184 184 <Reference Include="HeuristicLab.Core-3.3"> 185 <HintPath>..\ bin\HeuristicLab.Core-3.3.dll</HintPath>185 <HintPath>..\..\..\trunk\bin\HeuristicLab.Core-3.3.dll</HintPath> 186 186 <Private>False</Private> 187 187 </Reference> 188 188 <Reference Include="HeuristicLab.Data-3.3"> 189 <HintPath>..\ bin\HeuristicLab.Data-3.3.dll</HintPath>189 <HintPath>..\..\..\trunk\bin\HeuristicLab.Data-3.3.dll</HintPath> 190 190 <Private>False</Private> 191 191 </Reference> 192 192 <Reference Include="HeuristicLab.Encodings.BinaryVectorEncoding-3.3"> 193 <HintPath>..\ bin\HeuristicLab.Encodings.BinaryVectorEncoding-3.3.dll</HintPath>193 <HintPath>..\..\..\trunk\bin\HeuristicLab.Encodings.BinaryVectorEncoding-3.3.dll</HintPath> 194 194 <Private>False</Private> 195 195 </Reference> 196 196 <Reference Include="HeuristicLab.Encodings.IntegerVectorEncoding-3.3"> 197 197 <Private>False</Private> 198 <HintPath>..\ bin\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.dll</HintPath>198 <HintPath>..\..\..\trunk\bin\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.dll</HintPath> 199 199 </Reference> 200 200 <Reference Include="HeuristicLab.Encodings.LinearLinkageEncoding-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 201 201 <SpecificVersion>False</SpecificVersion> 202 <HintPath>..\ bin\HeuristicLab.Encodings.LinearLinkageEncoding-3.4.dll</HintPath>202 <HintPath>..\..\..\trunk\bin\HeuristicLab.Encodings.LinearLinkageEncoding-3.4.dll</HintPath> 203 203 </Reference> 204 204 <Reference Include="HeuristicLab.Encodings.PermutationEncoding-3.3"> 205 <HintPath>..\ bin\HeuristicLab.Encodings.PermutationEncoding-3.3.dll</HintPath>205 <HintPath>..\..\..\trunk\bin\HeuristicLab.Encodings.PermutationEncoding-3.3.dll</HintPath> 206 206 <Private>False</Private> 207 207 </Reference> 208 208 <Reference Include="HeuristicLab.Encodings.RealVectorEncoding-3.3"> 209 <HintPath>..\ bin\HeuristicLab.Encodings.RealVectorEncoding-3.3.dll</HintPath>209 <HintPath>..\..\..\trunk\bin\HeuristicLab.Encodings.RealVectorEncoding-3.3.dll</HintPath> 210 210 <Private>False</Private> 211 211 </Reference> 212 212 <Reference Include="HeuristicLab.Encodings.ScheduleEncoding-3.3"> 213 <HintPath>..\ bin\HeuristicLab.Encodings.ScheduleEncoding-3.3.dll</HintPath>213 <HintPath>..\..\..\trunk\bin\HeuristicLab.Encodings.ScheduleEncoding-3.3.dll</HintPath> 214 214 <Private>False</Private> 215 215 </Reference> 216 216 <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4"> 217 <HintPath>..\ bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath>217 <HintPath>..\..\..\trunk\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath> 218 218 <Private>False</Private> 219 219 </Reference> 220 220 <Reference Include="HeuristicLab.IGraph-0.8.0-pre, Version=0.8.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 221 221 <SpecificVersion>False</SpecificVersion> 222 <HintPath>..\ bin\HeuristicLab.IGraph-0.8.0-pre.dll</HintPath>222 <HintPath>..\..\..\trunk\bin\HeuristicLab.IGraph-0.8.0-pre.dll</HintPath> 223 223 <Private>False</Private> 224 224 </Reference> 225 225 <Reference Include="HeuristicLab.MainForm-3.3"> 226 <HintPath>..\ bin\HeuristicLab.MainForm-3.3.dll</HintPath>226 <HintPath>..\..\..\trunk\bin\HeuristicLab.MainForm-3.3.dll</HintPath> 227 227 <Private>False</Private> 228 228 </Reference> 229 229 <Reference Include="HeuristicLab.MainForm.WindowsForms-3.3"> 230 <HintPath>..\ bin\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath>230 <HintPath>..\..\..\trunk\bin\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath> 231 231 <Private>False</Private> 232 232 </Reference> 233 233 <Reference Include="HeuristicLab.Operators-3.3"> 234 <HintPath>..\ bin\HeuristicLab.Operators-3.3.dll</HintPath>234 <HintPath>..\..\..\trunk\bin\HeuristicLab.Operators-3.3.dll</HintPath> 235 235 <Private>False</Private> 236 236 </Reference> 237 237 <Reference Include="HeuristicLab.Optimization-3.3"> 238 <HintPath>..\ bin\HeuristicLab.Optimization-3.3.dll</HintPath>238 <HintPath>..\..\..\trunk\bin\HeuristicLab.Optimization-3.3.dll</HintPath> 239 239 <Private>False</Private> 240 240 </Reference> 241 241 <Reference Include="HeuristicLab.Optimization.Operators-3.3"> 242 <HintPath>..\ bin\HeuristicLab.Optimization.Operators-3.3.dll</HintPath>242 <HintPath>..\..\..\trunk\bin\HeuristicLab.Optimization.Operators-3.3.dll</HintPath> 243 243 <Private>False</Private> 244 244 </Reference> 245 245 <Reference Include="HeuristicLab.Optimization.Views-3.3"> 246 <HintPath>..\ bin\HeuristicLab.Optimization.Views-3.3.dll</HintPath>246 <HintPath>..\..\..\trunk\bin\HeuristicLab.Optimization.Views-3.3.dll</HintPath> 247 247 <Private>False</Private> 248 248 </Reference> 249 249 <Reference Include="HeuristicLab.Optimizer-3.3"> 250 <HintPath>..\ bin\HeuristicLab.Optimizer-3.3.dll</HintPath>250 <HintPath>..\..\..\trunk\bin\HeuristicLab.Optimizer-3.3.dll</HintPath> 251 251 <Private>False</Private> 252 252 </Reference> 253 253 <Reference Include="HeuristicLab.ParallelEngine-3.3"> 254 <HintPath>..\ bin\HeuristicLab.ParallelEngine-3.3.dll</HintPath>254 <HintPath>..\..\..\trunk\bin\HeuristicLab.ParallelEngine-3.3.dll</HintPath> 255 255 <Private>False</Private> 256 256 </Reference> 257 257 <Reference Include="HeuristicLab.Parameters-3.3"> 258 <HintPath>..\ bin\HeuristicLab.Parameters-3.3.dll</HintPath>258 <HintPath>..\..\..\trunk\bin\HeuristicLab.Parameters-3.3.dll</HintPath> 259 259 <Private>False</Private> 260 260 </Reference> 261 261 <Reference Include="HeuristicLab.Persistence-3.3"> 262 <HintPath>..\ bin\HeuristicLab.Persistence-3.3.dll</HintPath>262 <HintPath>..\..\..\trunk\bin\HeuristicLab.Persistence-3.3.dll</HintPath> 263 263 <Private>False</Private> 264 264 </Reference> 265 265 <Reference Include="HeuristicLab.PluginInfrastructure-3.3"> 266 <HintPath>..\ bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>266 <HintPath>..\..\..\trunk\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath> 267 267 <Private>False</Private> 268 268 </Reference> 269 269 <Reference Include="HeuristicLab.Problems.Binary-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 270 270 <SpecificVersion>False</SpecificVersion> 271 <HintPath>..\ bin\HeuristicLab.Problems.Binary-3.3.dll</HintPath>271 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Binary-3.3.dll</HintPath> 272 272 <Private>False</Private> 273 273 </Reference> 274 274 <Reference Include="HeuristicLab.Problems.BinPacking-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 275 275 <SpecificVersion>False</SpecificVersion> 276 <HintPath>..\ bin\HeuristicLab.Problems.BinPacking-3.3.dll</HintPath>276 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.BinPacking-3.3.dll</HintPath> 277 277 <Private>False</Private> 278 278 </Reference> 279 279 <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4"> 280 <HintPath>..\ bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>280 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath> 281 281 <Private>False</Private> 282 282 </Reference> 283 283 <Reference Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4"> 284 <HintPath>..\ bin\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.dll</HintPath>284 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.dll</HintPath> 285 285 <Private>False</Private> 286 286 </Reference> 287 287 <Reference Include="HeuristicLab.Problems.DataAnalysis.Symbolic.Classification-3.4"> 288 <HintPath>..\ bin\HeuristicLab.Problems.DataAnalysis.Symbolic.Classification-3.4.dll</HintPath>288 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.DataAnalysis.Symbolic.Classification-3.4.dll</HintPath> 289 289 <Private>False</Private> 290 290 </Reference> 291 291 <Reference Include="HeuristicLab.Problems.DataAnalysis.Symbolic.Regression-3.4"> 292 <HintPath>..\ bin\HeuristicLab.Problems.DataAnalysis.Symbolic.Regression-3.4.dll</HintPath>292 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.DataAnalysis.Symbolic.Regression-3.4.dll</HintPath> 293 293 <Private>False</Private> 294 294 </Reference> 295 295 <Reference Include="HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis-3.4"> 296 <HintPath>..\ bin\HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis-3.4.dll</HintPath>296 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis-3.4.dll</HintPath> 297 297 <Private>False</Private> 298 298 </Reference> 299 299 <Reference Include="HeuristicLab.Problems.ExternalEvaluation-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 300 300 <SpecificVersion>False</SpecificVersion> 301 <HintPath>..\ bin\HeuristicLab.Problems.ExternalEvaluation-3.4.dll</HintPath>301 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.ExternalEvaluation-3.4.dll</HintPath> 302 302 <Private>False</Private> 303 303 </Reference> 304 304 <Reference Include="HeuristicLab.Problems.ExternalEvaluation.GP-3.5, Version=3.5.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 305 305 <SpecificVersion>False</SpecificVersion> 306 <HintPath>..\ bin\HeuristicLab.Problems.ExternalEvaluation.GP-3.5.dll</HintPath>306 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.ExternalEvaluation.GP-3.5.dll</HintPath> 307 307 <Private>False</Private> 308 308 </Reference> 309 309 <Reference Include="HeuristicLab.Problems.ExternalEvaluation.Views-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 310 310 <SpecificVersion>False</SpecificVersion> 311 <HintPath>..\ bin\HeuristicLab.Problems.ExternalEvaluation.Views-3.4.dll</HintPath>311 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.ExternalEvaluation.Views-3.4.dll</HintPath> 312 312 <Private>False</Private> 313 313 </Reference> 314 314 <Reference Include="HeuristicLab.Problems.GeneticProgramming-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 315 315 <SpecificVersion>False</SpecificVersion> 316 <HintPath>..\ bin\HeuristicLab.Problems.GeneticProgramming-3.3.dll</HintPath>316 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.GeneticProgramming-3.3.dll</HintPath> 317 317 <Private>False</Private> 318 318 </Reference> 319 319 <Reference Include="HeuristicLab.Problems.GrammaticalEvolution-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 320 320 <SpecificVersion>False</SpecificVersion> 321 <HintPath>..\ bin\HeuristicLab.Problems.GrammaticalEvolution-3.4.dll</HintPath>321 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.GrammaticalEvolution-3.4.dll</HintPath> 322 322 <Private>False</Private> 323 323 </Reference> 324 324 <Reference Include="HeuristicLab.Problems.Instances-3.3"> 325 <HintPath>..\ bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath>325 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath> 326 326 <Private>False</Private> 327 327 </Reference> 328 328 <Reference Include="HeuristicLab.Problems.Instances.CordeauGQAP-3.3"> 329 <HintPath>..\ bin\HeuristicLab.Problems.Instances.CordeauGQAP-3.3.dll</HintPath>329 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances.CordeauGQAP-3.3.dll</HintPath> 330 330 <Private>False</Private> 331 331 </Reference> 332 332 <Reference Include="HeuristicLab.Problems.Instances.DataAnalysis-3.3"> 333 <HintPath>..\ bin\HeuristicLab.Problems.Instances.DataAnalysis-3.3.dll</HintPath>333 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances.DataAnalysis-3.3.dll</HintPath> 334 334 <Private>False</Private> 335 335 </Reference> 336 336 <Reference Include="HeuristicLab.Problems.Instances.DIMACS-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 337 337 <SpecificVersion>False</SpecificVersion> 338 <HintPath>..\ bin\HeuristicLab.Problems.Instances.DIMACS-3.3.dll</HintPath>338 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances.DIMACS-3.3.dll</HintPath> 339 339 <Private>False</Private> 340 340 </Reference> 341 341 <Reference Include="HeuristicLab.Problems.Instances.ElloumiCTAP-3.3"> 342 <HintPath>..\ bin\HeuristicLab.Problems.Instances.ElloumiCTAP-3.3.dll</HintPath>342 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances.ElloumiCTAP-3.3.dll</HintPath> 343 343 <Private>False</Private> 344 344 </Reference> 345 345 <Reference Include="HeuristicLab.Problems.Instances.QAPLIB-3.3"> 346 <HintPath>..\ bin\HeuristicLab.Problems.Instances.QAPLIB-3.3.dll</HintPath>346 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances.QAPLIB-3.3.dll</HintPath> 347 347 <Private>False</Private> 348 348 </Reference> 349 349 <Reference Include="HeuristicLab.Problems.Instances.TSPLIB-3.3"> 350 <HintPath>..\ bin\HeuristicLab.Problems.Instances.TSPLIB-3.3.dll</HintPath>350 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances.TSPLIB-3.3.dll</HintPath> 351 351 <Private>False</Private> 352 352 </Reference> 353 353 <Reference Include="HeuristicLab.Problems.Instances.VehicleRouting-3.4"> 354 <HintPath>..\ bin\HeuristicLab.Problems.Instances.VehicleRouting-3.4.dll</HintPath>354 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Instances.VehicleRouting-3.4.dll</HintPath> 355 355 <Private>False</Private> 356 356 </Reference> 357 357 <Reference Include="HeuristicLab.Problems.Knapsack-3.3"> 358 <HintPath>..\ bin\HeuristicLab.Problems.Knapsack-3.3.dll</HintPath>358 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Knapsack-3.3.dll</HintPath> 359 359 <Private>False</Private> 360 360 </Reference> 361 361 <Reference Include="HeuristicLab.Problems.LinearAssignment-3.3"> 362 <HintPath>..\ bin\HeuristicLab.Problems.LinearAssignment-3.3.dll</HintPath>362 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.LinearAssignment-3.3.dll</HintPath> 363 363 <Private>False</Private> 364 364 </Reference> 365 365 <Reference Include="HeuristicLab.Problems.Programmable-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 366 366 <SpecificVersion>False</SpecificVersion> 367 <HintPath>..\ bin\HeuristicLab.Problems.Programmable-3.3.dll</HintPath>367 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Programmable-3.3.dll</HintPath> 368 368 <Private>False</Private> 369 369 </Reference> 370 370 <Reference Include="HeuristicLab.Problems.Programmable.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 371 371 <SpecificVersion>False</SpecificVersion> 372 <HintPath>..\ bin\HeuristicLab.Problems.Programmable.Views-3.3.dll</HintPath>372 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Programmable.Views-3.3.dll</HintPath> 373 373 <Private>False</Private> 374 374 </Reference> 375 375 <Reference Include="HeuristicLab.Problems.Orienteering-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 376 <HintPath>..\ bin\HeuristicLab.Problems.Orienteering-3.3.dll</HintPath>376 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Orienteering-3.3.dll</HintPath> 377 377 <Private>False</Private> 378 378 </Reference> 379 379 <Reference Include="HeuristicLab.Problems.PTSP-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 380 380 <SpecificVersion>False</SpecificVersion> 381 <HintPath>..\ bin\HeuristicLab.Problems.PTSP-3.3.dll</HintPath>381 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.PTSP-3.3.dll</HintPath> 382 382 <Private>False</Private> 383 383 </Reference> 384 384 <Reference Include="HeuristicLab.Problems.QuadraticAssignment-3.3"> 385 <HintPath>..\ bin\HeuristicLab.Problems.QuadraticAssignment-3.3.dll</HintPath>385 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.QuadraticAssignment-3.3.dll</HintPath> 386 386 <Private>False</Private> 387 387 </Reference> 388 388 <Reference Include="HeuristicLab.Problems.Scheduling-3.3"> 389 <HintPath>..\ bin\HeuristicLab.Problems.Scheduling-3.3.dll</HintPath>389 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.Scheduling-3.3.dll</HintPath> 390 390 <Private>False</Private> 391 391 </Reference> 392 392 <Reference Include="HeuristicLab.Problems.TestFunctions-3.3"> 393 <HintPath>..\ bin\HeuristicLab.Problems.TestFunctions-3.3.dll</HintPath>393 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.TestFunctions-3.3.dll</HintPath> 394 394 <Private>False</Private> 395 395 </Reference> 396 396 <Reference Include="HeuristicLab.Problems.TestFunctions.MultiObjective-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 397 397 <SpecificVersion>False</SpecificVersion> 398 <HintPath>..\ bin\HeuristicLab.Problems.TestFunctions.MultiObjective-3.3.dll</HintPath>398 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.TestFunctions.MultiObjective-3.3.dll</HintPath> 399 399 <Private>False</Private> 400 400 </Reference> 401 401 <Reference Include="HeuristicLab.Problems.TravelingSalesman-3.3"> 402 <HintPath>..\ bin\HeuristicLab.Problems.TravelingSalesman-3.3.dll</HintPath>402 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.TravelingSalesman-3.3.dll</HintPath> 403 403 <Private>False</Private> 404 404 </Reference> 405 405 <Reference Include="HeuristicLab.Problems.VehicleRouting-3.4"> 406 <HintPath>..\ bin\HeuristicLab.Problems.VehicleRouting-3.4.dll</HintPath>406 <HintPath>..\..\..\trunk\bin\HeuristicLab.Problems.VehicleRouting-3.4.dll</HintPath> 407 407 <Private>False</Private> 408 408 </Reference> 409 409 <Reference Include="HeuristicLab.Random-3.3"> 410 <HintPath>..\ bin\HeuristicLab.Random-3.3.dll</HintPath>410 <HintPath>..\..\..\trunk\bin\HeuristicLab.Random-3.3.dll</HintPath> 411 411 <Private>False</Private> 412 412 </Reference> 413 413 <Reference Include="HeuristicLab.Scripting-3.3"> 414 <HintPath>..\ bin\HeuristicLab.Scripting-3.3.dll</HintPath>414 <HintPath>..\..\..\trunk\bin\HeuristicLab.Scripting-3.3.dll</HintPath> 415 415 <Private>False</Private> 416 416 </Reference> 417 417 <Reference Include="HeuristicLab.Selection-3.3"> 418 <HintPath>..\ bin\HeuristicLab.Selection-3.3.dll</HintPath>418 <HintPath>..\..\..\trunk\bin\HeuristicLab.Selection-3.3.dll</HintPath> 419 419 <Private>False</Private> 420 420 </Reference> 421 421 <Reference Include="HeuristicLab.SequentialEngine-3.3"> 422 <HintPath>..\ bin\HeuristicLab.SequentialEngine-3.3.dll</HintPath>422 <HintPath>..\..\..\trunk\bin\HeuristicLab.SequentialEngine-3.3.dll</HintPath> 423 423 <Private>False</Private> 424 424 </Reference> 425 425 <Reference Include="LibSVM-3.12"> 426 <HintPath>..\ bin\LibSVM-3.12.dll</HintPath>426 <HintPath>..\..\..\trunk\bin\LibSVM-3.12.dll</HintPath> 427 427 <Private>False</Private> 428 428 </Reference> … … 592 592 <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis-3.4\SymbolicDataAnalysisExpressionTreeInterpreterTest.cs" /> 593 593 <Compile Include="HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis-3.4\Util.cs" /> 594 <Compile Include="HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3\ApproximateLocalSearchTest.cs" /> 595 <Compile Include="HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3\CordeauCrossoverTest.cs" /> 596 <Compile Include="HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3\GQAPNMoveEvaluatorTest.cs" /> 597 <Compile Include="HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3\GRASPTest.cs" /> 594 598 <Compile Include="HeuristicLab.Problems.Instances-3.3\DIMACSGcolInstanceProviderTest.cs" /> 595 599 <Compile Include="HeuristicLab.Problems.Instances.DataAnalysis-3.3\RegressionInstanceProviderTest.cs" /> … … 699 703 </EmbeddedResource> 700 704 </ItemGroup> 701 <ItemGroup /> 705 <ItemGroup> 706 <ProjectReference Include="..\HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms\3.3\HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3.csproj"> 707 <Project>{577239ec-7d7f-4505-a0a4-572e34010dba}</Project> 708 <Name>HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms-3.3</Name> 709 </ProjectReference> 710 <ProjectReference Include="..\HeuristicLab.Problems.GeneralizedQuadraticAssignment\3.3\HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3.csproj"> 711 <Project>{c739e6d2-5680-4804-a810-8017da0c238f}</Project> 712 <Name>HeuristicLab.Problems.GeneralizedQuadraticAssignment-3.3</Name> 713 </ProjectReference> 714 </ItemGroup> 702 715 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 703 716 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.