Changeset 7445 for branches/GeneralizedQAP/HeuristicLab.Problems.Instances
- Timestamp:
- 02/03/12 16:19:24 (13 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.Instances/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.Instances/3.3/HeuristicLab.Problems.Instances-3.3.csproj
r7444 r7445 40 40 <Reference Include="HeuristicLab.Common-3.3"> 41 41 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath> 42 <Private>False</Private>43 </Reference>44 <Reference Include="HeuristicLab.Core-3.3">45 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>46 42 <Private>False</Private> 47 43 </Reference> -
branches/GeneralizedQAP/HeuristicLab.Problems.Instances/3.3/IProblemInstanceProvider.cs
r7443 r7445 24 24 25 25 namespace HeuristicLab.Problems.Instances { 26 public interface IProblemInstanceProvider <TInstance>{26 public interface IProblemInstanceProvider { 27 27 string Name { get; } 28 28 string Description { get; } … … 30 30 31 31 IEnumerable<IInstanceDescriptor> GetInstanceDescriptors(); 32 } 33 34 public interface IProblemInstanceProvider<TInstance> : IProblemInstanceProvider { 32 35 TInstance GetInstance(IInstanceDescriptor descriptor); 33 36 } -
branches/GeneralizedQAP/HeuristicLab.Problems.Instances/3.3/Instances/ICTAPInstance.cs
r7443 r7445 55 55 /// Optional! The quality value of the <see cref="BestKnownAssignment"/> 56 56 /// </summary> 57 double BestKnownQuality { get; }57 double? BestKnownQuality { get; } 58 58 } 59 59 } -
branches/GeneralizedQAP/HeuristicLab.Problems.Instances/3.3/Instances/IQAPInstance.cs
r7443 r7445 47 47 /// Optional! The quality value of the <see cref="BestKnownAssignment"/> 48 48 /// </summary> 49 double BestKnownQuality { get; }49 double? BestKnownQuality { get; } 50 50 } 51 51 } -
branches/GeneralizedQAP/HeuristicLab.Problems.Instances/3.3/Plugin.cs
r7444 r7445 23 23 24 24 namespace HeuristicLab.Problems.Instances { 25 [Plugin("HeuristicLab.Problems.Instances", "3.3.6.744 3")]25 [Plugin("HeuristicLab.Problems.Instances", "3.3.6.7444")] 26 26 [PluginFile("HeuristicLab.Problems.Instances-3.3.dll", PluginFileType.Assembly)] 27 27 public class HeuristicLabProblemsInstancesPlugin : PluginBase {
Note: See TracChangeset
for help on using the changeset viewer.