- Timestamp:
- 07/17/11 22:51:11 (13 years ago)
- Location:
- branches/QAPAlgorithms
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/QAPAlgorithms
- Property svn:ignore
-
old new 12 12 *.psess 13 13 *.vsp 14 *.docstates
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/QAPAlgorithms/HeuristicLab.Algorithms.VariableNeighborhoodSearch/3.3/HeuristicLabAlgorithmsVariableNeighborhoodSearchPlugin.cs.frame
r6099 r6569 26 26 /// Plugin class for HeuristicLab.Algorithms.VariableNeighborhoodSearch plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.VariableNeighborhoodSearch", "3.3. 4.$WCREV$")]28 [Plugin("HeuristicLab.Algorithms.VariableNeighborhoodSearch", "3.3.5.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Algorithms.VariableNeighborhoodSearch-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
branches/QAPAlgorithms/HeuristicLab.Algorithms.VariableNeighborhoodSearch/3.3/Properties/AssemblyInfo.frame
r6099 r6569 53 53 // by using the '*' as shown below: 54 54 [assembly: AssemblyVersion("3.3.0.0")] 55 [assembly: AssemblyFileVersion("3.3. 4.$WCREV$")]55 [assembly: AssemblyFileVersion("3.3.5.$WCREV$")] -
branches/QAPAlgorithms/HeuristicLab.Algorithms.VariableNeighborhoodSearch/3.3/VariableNeighborhoodSearch.cs
r6057 r6569 58 58 get { return (FixedValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; } 59 59 } 60 p rivateConstrainedValueParameter<ILocalImprovementOperator> LocalImprovementParameter {60 public ConstrainedValueParameter<ILocalImprovementOperator> LocalImprovementParameter { 61 61 get { return (ConstrainedValueParameter<ILocalImprovementOperator>)Parameters["LocalImprovement"]; } 62 62 } 63 p rivateConstrainedValueParameter<IMultiNeighborhoodShakingOperator> ShakingOperatorParameter {63 public ConstrainedValueParameter<IMultiNeighborhoodShakingOperator> ShakingOperatorParameter { 64 64 get { return (ConstrainedValueParameter<IMultiNeighborhoodShakingOperator>)Parameters["ShakingOperator"]; } 65 65 } … … 88 88 private VariableNeighborhoodSearchMainLoop MainLoop { 89 89 get { return FindMainLoop(SolutionsCreator.Successor); } 90 } 91 public int Seed { 92 get { return SeedParameter.Value.Value; } 93 set { SeedParameter.Value.Value = value; } 94 } 95 public bool SetSeedRandomly { 96 get { return SetSeedRandomlyParameter.Value.Value; } 97 set { SetSeedRandomlyParameter.Value.Value = value; } 98 } 99 public ILocalImprovementOperator LocalImprovement { 100 get { return LocalImprovementParameter.Value; } 101 set { LocalImprovementParameter.Value = value; } 102 } 103 public IMultiNeighborhoodShakingOperator ShakingOperator { 104 get { return ShakingOperatorParameter.Value; } 105 set { ShakingOperatorParameter.Value = value; } 106 } 107 public int MaximumIterations { 108 get { return MaximumIterationsParameter.Value.Value; } 109 set { MaximumIterationsParameter.Value.Value = value; } 110 } 111 public int LocalImprovementMaximumIterations { 112 get { return LocalImprovementMaximumIterationsParameter.Value.Value; } 113 set { LocalImprovementMaximumIterationsParameter.Value.Value = value; } 90 114 } 91 115 #endregion
Note: See TracChangeset
for help on using the changeset viewer.