Changeset 13861
- Timestamp:
- 05/30/16 00:03:14 (9 years ago)
- Location:
- branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem.Common/3.3
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem.Common/3.3/HeuristicLab.OptimizationExpertSystem.Common-3.3.csproj
r13791 r13861 114 114 <Private>False</Private> 115 115 </Reference> 116 <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 117 <SpecificVersion>False</SpecificVersion> 118 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath> 119 <Private>False</Private> 120 </Reference> 116 121 <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 117 122 <SpecificVersion>False</SpecificVersion> … … 159 164 <ItemGroup> 160 165 <Compile Include="Interfaces\IRecommendationModel.cs" /> 166 <Compile Include="ProblemCharacteristicAnalysis\QAP\QAPBestDirectedWalk.cs" /> 161 167 <Compile Include="Recommenders\KNearestNeighborModel.cs" /> 162 168 <Compile Include="Recommenders\OverallBestRecommender.cs" /> … … 183 189 <Private>False</Private> 184 190 </ProjectReference> 191 <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj"> 192 <Project>{DBECB8B0-B166-4133-BAF1-ED67C3FD7FCA}</Project> 193 <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name> 194 <Private>False</Private> 195 </ProjectReference> 185 196 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj"> 186 197 <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project> -
branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem.Common/3.3/Recommenders/DistanceWeightedRecommender.cs
r13787 r13861 57 57 } 58 58 59 public IRecommendationModel TrainModel( KnowledgeCenter okc, string[] characteristics) {59 public IRecommendationModel TrainModel(IRun[] problemInstances, KnowledgeCenter okc, string[] characteristics) { 60 60 var piDistances = okc.GetProblemDistances(characteristics); 61 61 var maxDist = piDistances.Max(x => x.Value);
Note: See TracChangeset
for help on using the changeset viewer.