[3044] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 HeuristicLab.Analysis;
|
---|
[4722] | 23 | using HeuristicLab.Common;
|
---|
[3044] | 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
| 26 | using HeuristicLab.Operators;
|
---|
[3226] | 27 | using HeuristicLab.Optimization.Operators;
|
---|
[3044] | 28 | using HeuristicLab.Parameters;
|
---|
| 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 30 | using HeuristicLab.Selection;
|
---|
| 31 |
|
---|
[3100] | 32 | namespace HeuristicLab.Algorithms.TabuSearch {
|
---|
[3044] | 33 | /// <summary>
|
---|
| 34 | /// An operator which represents a tabu search.
|
---|
| 35 | /// </summary>
|
---|
[3100] | 36 | [Item("TabuSearchMainLoop", "An operator which represents the main loop of a tabu search.")]
|
---|
[3044] | 37 | [StorableClass]
|
---|
[3141] | 38 | public sealed class TabuSearchMainLoop : AlgorithmOperator {
|
---|
[3044] | 39 | #region Parameter properties
|
---|
| 40 | public ValueLookupParameter<IRandom> RandomParameter {
|
---|
| 41 | get { return (ValueLookupParameter<IRandom>)Parameters["Random"]; }
|
---|
| 42 | }
|
---|
[3048] | 43 | public ValueLookupParameter<BoolValue> MaximizationParameter {
|
---|
| 44 | get { return (ValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
[3044] | 45 | }
|
---|
[3074] | 46 | public LookupParameter<DoubleValue> QualityParameter {
|
---|
| 47 | get { return (LookupParameter<DoubleValue>)Parameters["Quality"]; }
|
---|
[3044] | 48 | }
|
---|
[3141] | 49 | public ValueLookupParameter<DoubleValue> BestKnownQualityParameter {
|
---|
| 50 | get { return (ValueLookupParameter<DoubleValue>)Parameters["BestKnownQuality"]; }
|
---|
| 51 | }
|
---|
[3074] | 52 | public LookupParameter<DoubleValue> MoveQualityParameter {
|
---|
| 53 | get { return (LookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
|
---|
| 54 | }
|
---|
[3104] | 55 | public LookupParameter<BoolValue> MoveTabuParameter {
|
---|
| 56 | get { return (LookupParameter<BoolValue>)Parameters["MoveTabu"]; }
|
---|
| 57 | }
|
---|
[3048] | 58 | public ValueLookupParameter<IntValue> MaximumIterationsParameter {
|
---|
| 59 | get { return (ValueLookupParameter<IntValue>)Parameters["MaximumIterations"]; }
|
---|
[3044] | 60 | }
|
---|
[3048] | 61 | public ValueLookupParameter<IntValue> TabuTenureParameter {
|
---|
| 62 | get { return (ValueLookupParameter<IntValue>)Parameters["TabuTenure"]; }
|
---|
[3044] | 63 | }
|
---|
| 64 | public ValueLookupParameter<IOperator> MoveGeneratorParameter {
|
---|
| 65 | get { return (ValueLookupParameter<IOperator>)Parameters["MoveGenerator"]; }
|
---|
| 66 | }
|
---|
[3074] | 67 | public ValueLookupParameter<IOperator> MoveEvaluatorParameter {
|
---|
| 68 | get { return (ValueLookupParameter<IOperator>)Parameters["MoveEvaluator"]; }
|
---|
[3044] | 69 | }
|
---|
[3074] | 70 | public ValueLookupParameter<IOperator> MoveMakerParameter {
|
---|
| 71 | get { return (ValueLookupParameter<IOperator>)Parameters["MoveMaker"]; }
|
---|
[3044] | 72 | }
|
---|
[3340] | 73 | public ValueLookupParameter<IOperator> TabuCheckerParameter {
|
---|
| 74 | get { return (ValueLookupParameter<IOperator>)Parameters["TabuChecker"]; }
|
---|
[3044] | 75 | }
|
---|
[3340] | 76 | public ValueLookupParameter<IOperator> TabuMakerParameter {
|
---|
| 77 | get { return (ValueLookupParameter<IOperator>)Parameters["TabuMaker"]; }
|
---|
[3044] | 78 | }
|
---|
[3636] | 79 | public ValueLookupParameter<IOperator> AnalyzerParameter {
|
---|
| 80 | get { return (ValueLookupParameter<IOperator>)Parameters["Analyzer"]; }
|
---|
[3044] | 81 | }
|
---|
[3141] | 82 | public ValueLookupParameter<VariableCollection> ResultsParameter {
|
---|
| 83 | get { return (ValueLookupParameter<VariableCollection>)Parameters["Results"]; }
|
---|
| 84 | }
|
---|
[3044] | 85 | #endregion
|
---|
| 86 |
|
---|
[3145] | 87 | [StorableConstructor]
|
---|
[4722] | 88 | private TabuSearchMainLoop(bool deserializing) : base(deserializing) { }
|
---|
[3100] | 89 | public TabuSearchMainLoop()
|
---|
[3044] | 90 | : base() {
|
---|
[3145] | 91 | Initialize();
|
---|
| 92 | }
|
---|
[4722] | 93 | private TabuSearchMainLoop(TabuSearchMainLoop original, Cloner cloner)
|
---|
| 94 | : base(original, cloner) {
|
---|
| 95 | }
|
---|
| 96 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 97 | return new TabuSearchMainLoop(this, cloner);
|
---|
| 98 | }
|
---|
[3145] | 99 |
|
---|
[5160] | 100 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 101 | private void AfterDeserialization() {
|
---|
[5162] | 102 | // BackwardsCompatibility3.3
|
---|
| 103 | #region Backwards compatible code, remove with 3.4
|
---|
[5160] | 104 | VariableCreator variableCreator = OperatorGraph.InitialOperator as VariableCreator;
|
---|
| 105 |
|
---|
| 106 | if (variableCreator != null) {
|
---|
| 107 | if (!variableCreator.CollectedValues.ContainsKey("Memories")) {
|
---|
| 108 | variableCreator.CollectedValues.Add(new ValueParameter<VariableCollection>("Memories", new VariableCollection()));
|
---|
| 109 | }
|
---|
| 110 | }
|
---|
| 111 | #endregion
|
---|
| 112 | }
|
---|
| 113 |
|
---|
[3145] | 114 | private void Initialize() {
|
---|
[3044] | 115 | #region Create parameters
|
---|
| 116 | Parameters.Add(new ValueLookupParameter<IRandom>("Random", "A pseudo random number generator."));
|
---|
[3048] | 117 | Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, otherwise false."));
|
---|
[3074] | 118 | Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The value which represents the quality of a solution."));
|
---|
[3141] | 119 | Parameters.Add(new ValueLookupParameter<DoubleValue>("BestKnownQuality", "The best known quality value found so far."));
|
---|
[3074] | 120 | Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The value which represents the quality of a move."));
|
---|
[3104] | 121 | Parameters.Add(new LookupParameter<BoolValue>("MoveTabu", "The value that indicates if a move is tabu or not."));
|
---|
[3048] | 122 | Parameters.Add(new ValueLookupParameter<IntValue>("MaximumIterations", "The maximum number of generations which should be processed."));
|
---|
| 123 | Parameters.Add(new ValueLookupParameter<IntValue>("TabuTenure", "The length of the tabu list, and also means the number of iterations a move is kept tabu"));
|
---|
[3145] | 124 |
|
---|
[3044] | 125 | Parameters.Add(new ValueLookupParameter<IOperator>("MoveGenerator", "The operator that generates the moves."));
|
---|
| 126 | Parameters.Add(new ValueLookupParameter<IOperator>("MoveMaker", "The operator that performs a move and updates the quality."));
|
---|
[3074] | 127 | Parameters.Add(new ValueLookupParameter<IOperator>("MoveEvaluator", "The operator that evaluates a move."));
|
---|
[3340] | 128 | Parameters.Add(new ValueLookupParameter<IOperator>("TabuChecker", "The operator that checks whether a move is tabu."));
|
---|
| 129 | Parameters.Add(new ValueLookupParameter<IOperator>("TabuMaker", "The operator that declares a move tabu."));
|
---|
[3044] | 130 |
|
---|
[3809] | 131 | Parameters.Add(new ValueLookupParameter<IOperator>("Analyzer", "The operator used to analyze the solution and moves."));
|
---|
[3141] | 132 | Parameters.Add(new ValueLookupParameter<VariableCollection>("Results", "The variable collection where results should be stored."));
|
---|
[3044] | 133 | #endregion
|
---|
| 134 |
|
---|
| 135 | #region Create operators
|
---|
| 136 | VariableCreator variableCreator = new VariableCreator();
|
---|
[3636] | 137 | SubScopesProcessor subScopesProcessor0 = new SubScopesProcessor();
|
---|
| 138 | Assigner bestQualityInitializer = new Assigner();
|
---|
| 139 | Placeholder analyzer1 = new Placeholder();
|
---|
| 140 | ResultsCollector resultsCollector1 = new ResultsCollector();
|
---|
[3679] | 141 | ResultsCollector resultsCollector2 = new ResultsCollector();
|
---|
[3521] | 142 | SubScopesProcessor solutionProcessor = new SubScopesProcessor();
|
---|
[3044] | 143 | Placeholder moveGenerator = new Placeholder();
|
---|
[3193] | 144 | UniformSubScopesProcessor moveEvaluationProcessor = new UniformSubScopesProcessor();
|
---|
[3074] | 145 | Placeholder moveEvaluator = new Placeholder();
|
---|
[3636] | 146 | IntCounter evaluatedMovesCounter = new IntCounter();
|
---|
[3340] | 147 | Placeholder tabuChecker = new Placeholder();
|
---|
[3044] | 148 | SubScopesSorter moveQualitySorter = new SubScopesSorter();
|
---|
| 149 | TabuSelector tabuSelector = new TabuSelector();
|
---|
[3195] | 150 | ConditionalBranch emptyNeighborhoodBranch1 = new ConditionalBranch();
|
---|
[3521] | 151 | SubScopesProcessor moveMakingProcessor = new SubScopesProcessor();
|
---|
[3809] | 152 | UniformSubScopesProcessor selectedMoveMakingProcesor = new UniformSubScopesProcessor();
|
---|
[3340] | 153 | Placeholder tabuMaker = new Placeholder();
|
---|
[3044] | 154 | Placeholder moveMaker = new Placeholder();
|
---|
[3809] | 155 | MergingReducer mergingReducer = new MergingReducer();
|
---|
| 156 | Placeholder analyzer2 = new Placeholder();
|
---|
[3521] | 157 | SubScopesRemover subScopesRemover = new SubScopesRemover();
|
---|
[3195] | 158 | ConditionalBranch emptyNeighborhoodBranch2 = new ConditionalBranch();
|
---|
[3636] | 159 | BestQualityMemorizer bestQualityUpdater = new BestQualityMemorizer();
|
---|
[3044] | 160 | IntCounter iterationsCounter = new IntCounter();
|
---|
| 161 | Comparator iterationsComparator = new Comparator();
|
---|
[3679] | 162 | ResultsCollector resultsCollector3 = new ResultsCollector();
|
---|
[3044] | 163 | ConditionalBranch iterationsTermination = new ConditionalBranch();
|
---|
| 164 |
|
---|
[3750] | 165 | variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("Iterations", new IntValue(0))); // Class TabuSearch expects this to be called Iterations
|
---|
[3636] | 166 | variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("EvaluatedMoves", new IntValue(0)));
|
---|
[3195] | 167 | variableCreator.CollectedValues.Add(new ValueParameter<BoolValue>("EmptyNeighborhood", new BoolValue(false)));
|
---|
[3636] | 168 | variableCreator.CollectedValues.Add(new ValueParameter<ItemList<IItem>>("TabuList", new ItemList<IItem>()));
|
---|
[5160] | 169 | variableCreator.CollectedValues.Add(new ValueParameter<VariableCollection>("Memories", new VariableCollection()));
|
---|
[3636] | 170 | variableCreator.CollectedValues.Add(new ValueParameter<DoubleValue>("BestQuality", new DoubleValue(0)));
|
---|
[3044] | 171 |
|
---|
[3636] | 172 | bestQualityInitializer.Name = "Initialize BestQuality";
|
---|
| 173 | bestQualityInitializer.LeftSideParameter.ActualName = "BestQuality";
|
---|
| 174 | bestQualityInitializer.RightSideParameter.ActualName = QualityParameter.Name;
|
---|
[3141] | 175 |
|
---|
[3636] | 176 | analyzer1.Name = "Analyzer (placeholder)";
|
---|
| 177 | analyzer1.OperatorParameter.ActualName = AnalyzerParameter.Name;
|
---|
[3679] | 178 |
|
---|
| 179 | resultsCollector1.CopyValue = new BoolValue(false);
|
---|
[3636] | 180 | resultsCollector1.CollectedValues.Add(new LookupParameter<IntValue>("Iterations"));
|
---|
| 181 | resultsCollector1.CollectedValues.Add(new LookupParameter<DoubleValue>("Best Quality", null, "BestQuality"));
|
---|
| 182 | resultsCollector1.ResultsParameter.ActualName = ResultsParameter.Name;
|
---|
[3044] | 183 |
|
---|
[3679] | 184 | resultsCollector2.CopyValue = new BoolValue(true);
|
---|
| 185 | resultsCollector2.CollectedValues.Add(new LookupParameter<IntValue>("Evaluated Moves", null, "EvaluatedMoves"));
|
---|
| 186 | resultsCollector2.ResultsParameter.ActualName = ResultsParameter.Name;
|
---|
| 187 |
|
---|
[3044] | 188 | moveGenerator.Name = "MoveGenerator (placeholder)";
|
---|
[3141] | 189 | moveGenerator.OperatorParameter.ActualName = MoveGeneratorParameter.Name;
|
---|
[3044] | 190 |
|
---|
[3074] | 191 | moveEvaluator.Name = "MoveEvaluator (placeholder)";
|
---|
[3141] | 192 | moveEvaluator.OperatorParameter.ActualName = MoveEvaluatorParameter.Name;
|
---|
[3044] | 193 |
|
---|
[3636] | 194 | evaluatedMovesCounter.Name = "EvaluatedMoves + 1";
|
---|
| 195 | evaluatedMovesCounter.ValueParameter.ActualName = "EvaluatedMoves";
|
---|
| 196 | evaluatedMovesCounter.Increment = new IntValue(1);
|
---|
| 197 |
|
---|
[3340] | 198 | tabuChecker.Name = "TabuChecker (placeholder)";
|
---|
| 199 | tabuChecker.OperatorParameter.ActualName = TabuCheckerParameter.Name;
|
---|
[3044] | 200 |
|
---|
[3141] | 201 | moveQualitySorter.DescendingParameter.ActualName = MaximizationParameter.Name;
|
---|
| 202 | moveQualitySorter.ValueParameter.ActualName = MoveQualityParameter.Name;
|
---|
[3044] | 203 |
|
---|
[3521] | 204 | tabuSelector.AspirationParameter.Value = new BoolValue(true);
|
---|
| 205 | tabuSelector.BestQualityParameter.ActualName = "BestQuality";
|
---|
| 206 | tabuSelector.CopySelected = new BoolValue(false);
|
---|
| 207 | tabuSelector.EmptyNeighborhoodParameter.ActualName = "EmptyNeighborhood";
|
---|
| 208 | tabuSelector.MaximizationParameter.ActualName = MaximizationParameter.Name;
|
---|
| 209 | tabuSelector.MoveQualityParameter.ActualName = MoveQualityParameter.Name;
|
---|
| 210 | tabuSelector.MoveTabuParameter.ActualName = MoveTabuParameter.Name;
|
---|
[4068] | 211 |
|
---|
[3193] | 212 | moveMakingProcessor.Name = "MoveMaking processor (UniformSubScopesProcessor)";
|
---|
[3044] | 213 |
|
---|
[3195] | 214 | emptyNeighborhoodBranch1.Name = "Neighborhood empty?";
|
---|
| 215 | emptyNeighborhoodBranch1.ConditionParameter.ActualName = "EmptyNeighborhood";
|
---|
| 216 |
|
---|
[3340] | 217 | tabuMaker.Name = "TabuMaker (placeholder)";
|
---|
| 218 | tabuMaker.OperatorParameter.ActualName = TabuMakerParameter.Name;
|
---|
[3044] | 219 |
|
---|
| 220 | moveMaker.Name = "MoveMaker (placeholder)";
|
---|
[3141] | 221 | moveMaker.OperatorParameter.ActualName = MoveMakerParameter.Name;
|
---|
[3044] | 222 |
|
---|
[3809] | 223 | analyzer2.Name = "Analyzer (placeholder)";
|
---|
| 224 | analyzer2.OperatorParameter.ActualName = AnalyzerParameter.Name;
|
---|
| 225 |
|
---|
[3521] | 226 | subScopesRemover.RemoveAllSubScopes = true;
|
---|
[3044] | 227 |
|
---|
[3636] | 228 | bestQualityUpdater.Name = "Update BestQuality";
|
---|
| 229 | bestQualityUpdater.MaximizationParameter.ActualName = MaximizationParameter.Name;
|
---|
| 230 | bestQualityUpdater.QualityParameter.ActualName = QualityParameter.Name;
|
---|
| 231 | bestQualityUpdater.BestQualityParameter.ActualName = "BestQuality";
|
---|
| 232 |
|
---|
[3044] | 233 | iterationsCounter.Name = "Iterations Counter";
|
---|
[3048] | 234 | iterationsCounter.Increment = new IntValue(1);
|
---|
[3044] | 235 | iterationsCounter.ValueParameter.ActualName = "Iterations";
|
---|
| 236 |
|
---|
[3143] | 237 | iterationsComparator.Name = "Iterations >= MaximumIterations";
|
---|
| 238 | iterationsComparator.Comparison = new Comparison(ComparisonType.GreaterOrEqual);
|
---|
[3044] | 239 | iterationsComparator.LeftSideParameter.ActualName = "Iterations";
|
---|
[3141] | 240 | iterationsComparator.RightSideParameter.ActualName = MaximumIterationsParameter.Name;
|
---|
[3143] | 241 | iterationsComparator.ResultParameter.ActualName = "Terminate";
|
---|
[3044] | 242 |
|
---|
[3679] | 243 | resultsCollector3.CopyValue = new BoolValue(true);
|
---|
| 244 | resultsCollector3.CollectedValues.Add(new LookupParameter<IntValue>("Evaluated Moves", null, "EvaluatedMoves"));
|
---|
| 245 | resultsCollector3.ResultsParameter.ActualName = ResultsParameter.Name;
|
---|
| 246 |
|
---|
[3521] | 247 | emptyNeighborhoodBranch2.Name = "Neighborhood empty?";
|
---|
| 248 | emptyNeighborhoodBranch2.ConditionParameter.ActualName = "EmptyNeighborhood";
|
---|
| 249 |
|
---|
[3044] | 250 | iterationsTermination.Name = "Iterations Termination Condition";
|
---|
[3143] | 251 | iterationsTermination.ConditionParameter.ActualName = "Terminate";
|
---|
[3044] | 252 | #endregion
|
---|
| 253 |
|
---|
| 254 | #region Create operator graph
|
---|
[3636] | 255 | OperatorGraph.InitialOperator = variableCreator;
|
---|
| 256 | variableCreator.Successor = subScopesProcessor0;
|
---|
| 257 | subScopesProcessor0.Operators.Add(bestQualityInitializer);
|
---|
| 258 | subScopesProcessor0.Successor = resultsCollector1;
|
---|
[3809] | 259 | bestQualityInitializer.Successor = analyzer1;
|
---|
| 260 | analyzer1.Successor = null;
|
---|
[3679] | 261 | resultsCollector1.Successor = resultsCollector2;
|
---|
| 262 | resultsCollector2.Successor = solutionProcessor;
|
---|
[3521] | 263 | solutionProcessor.Operators.Add(moveGenerator);
|
---|
| 264 | solutionProcessor.Successor = iterationsCounter;
|
---|
[3044] | 265 | moveGenerator.Successor = moveEvaluationProcessor;
|
---|
[3074] | 266 | moveEvaluationProcessor.Operator = moveEvaluator;
|
---|
[3809] | 267 | moveEvaluationProcessor.Successor = moveQualitySorter;
|
---|
[3636] | 268 | moveEvaluator.Successor = evaluatedMovesCounter;
|
---|
| 269 | evaluatedMovesCounter.Successor = tabuChecker;
|
---|
[3340] | 270 | tabuChecker.Successor = null;
|
---|
[3636] | 271 | moveQualitySorter.Successor = tabuSelector;
|
---|
[3195] | 272 | tabuSelector.Successor = emptyNeighborhoodBranch1;
|
---|
[3809] | 273 | emptyNeighborhoodBranch1.FalseBranch = moveMakingProcessor;
|
---|
[3195] | 274 | emptyNeighborhoodBranch1.TrueBranch = null;
|
---|
[3521] | 275 | emptyNeighborhoodBranch1.Successor = subScopesRemover;
|
---|
[3809] | 276 | moveMakingProcessor.Operators.Add(new EmptyOperator());
|
---|
| 277 | moveMakingProcessor.Operators.Add(selectedMoveMakingProcesor);
|
---|
| 278 | moveMakingProcessor.Successor = mergingReducer;
|
---|
| 279 | selectedMoveMakingProcesor.Operator = tabuMaker;
|
---|
| 280 | selectedMoveMakingProcesor.Successor = null;
|
---|
[3340] | 281 | tabuMaker.Successor = moveMaker;
|
---|
[3141] | 282 | moveMaker.Successor = null;
|
---|
[3809] | 283 | mergingReducer.Successor = analyzer2;
|
---|
| 284 | analyzer2.Successor = null;
|
---|
[3521] | 285 | subScopesRemover.Successor = null;
|
---|
[3044] | 286 | iterationsCounter.Successor = iterationsComparator;
|
---|
[3809] | 287 | iterationsComparator.Successor = resultsCollector3;
|
---|
[3679] | 288 | resultsCollector3.Successor = emptyNeighborhoodBranch2;
|
---|
[3521] | 289 | emptyNeighborhoodBranch2.TrueBranch = null;
|
---|
| 290 | emptyNeighborhoodBranch2.FalseBranch = iterationsTermination;
|
---|
| 291 | emptyNeighborhoodBranch2.Successor = null;
|
---|
[3143] | 292 | iterationsTermination.TrueBranch = null;
|
---|
[3521] | 293 | iterationsTermination.FalseBranch = solutionProcessor;
|
---|
[3044] | 294 | #endregion
|
---|
| 295 | }
|
---|
[3715] | 296 |
|
---|
| 297 | public override IOperation Apply() {
|
---|
| 298 | if (MoveGeneratorParameter.ActualValue == null || MoveEvaluatorParameter.ActualValue == null || MoveMakerParameter.ActualValue == null
|
---|
| 299 | || TabuCheckerParameter.ActualValue == null || TabuMakerParameter.ActualValue == null)
|
---|
| 300 | return null;
|
---|
| 301 | return base.Apply();
|
---|
| 302 | }
|
---|
[3044] | 303 | }
|
---|
| 304 | }
|
---|