- Timestamp:
- 08/01/11 17:48:53 (13 years ago)
- Location:
- branches/GP.Grammar.Editor/HeuristicLab.Algorithms.LocalSearch/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP.Grammar.Editor/HeuristicLab.Algorithms.LocalSearch/3.3/HeuristicLabAlgorithmsLocalSearchPlugin.cs.frame
r6099 r6618 26 26 /// Plugin class for HeuristicLab.Algorithms.LocalSearch plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.LocalSearch", "3.3. 4.$WCREV$")]28 [Plugin("HeuristicLab.Algorithms.LocalSearch", "3.3.5.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Algorithms.LocalSearch-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
branches/GP.Grammar.Editor/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearch.cs
r6053 r6618 58 58 get { return (ValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; } 59 59 } 60 p rivateConstrainedValueParameter<IMoveGenerator> MoveGeneratorParameter {60 public ConstrainedValueParameter<IMoveGenerator> MoveGeneratorParameter { 61 61 get { return (ConstrainedValueParameter<IMoveGenerator>)Parameters["MoveGenerator"]; } 62 62 } 63 p rivateConstrainedValueParameter<IMoveMaker> MoveMakerParameter {63 public ConstrainedValueParameter<IMoveMaker> MoveMakerParameter { 64 64 get { return (ConstrainedValueParameter<IMoveMaker>)Parameters["MoveMaker"]; } 65 65 } 66 p rivateConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter {66 public ConstrainedValueParameter<ISingleObjectiveMoveEvaluator> MoveEvaluatorParameter { 67 67 get { return (ConstrainedValueParameter<ISingleObjectiveMoveEvaluator>)Parameters["MoveEvaluator"]; } 68 68 } -
branches/GP.Grammar.Editor/HeuristicLab.Algorithms.LocalSearch/3.3/Properties/AssemblyInfo.frame
r6099 r6618 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$")]
Note: See TracChangeset
for help on using the changeset viewer.