Changeset 4684 for branches/CloningRefactoring/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Symbolic
- Timestamp:
- 10/29/10 19:59:46 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CloningRefactoring/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Symbolic/SymbolicClassificationProblem.cs
r4678 r4684 57 57 public ISymbolicExpressionTreeInterpreter SymbolicExpressionTreeInterpreter { 58 58 get { return SymbolicExpressionTreeInterpreterParameter.Value; } 59 pr otectedset { SymbolicExpressionTreeInterpreterParameter.Value = value; }59 private set { SymbolicExpressionTreeInterpreterParameter.Value = value; } 60 60 } 61 61 public IValueParameter<ISymbolicExpressionTreeInterpreter> SymbolicExpressionTreeInterpreterParameter { … … 65 65 public ISymbolicExpressionGrammar FunctionTreeGrammar { 66 66 get { return (ISymbolicExpressionGrammar)FunctionTreeGrammarParameter.Value; } 67 pr otectedset { FunctionTreeGrammarParameter.Value = value; }67 private set { FunctionTreeGrammarParameter.Value = value; } 68 68 } 69 69 public IValueParameter<ISymbolicExpressionGrammar> FunctionTreeGrammarParameter { … … 73 73 public IntValue MaxExpressionLength { 74 74 get { return MaxExpressionLengthParameter.Value; } 75 pr otectedset { MaxExpressionLengthParameter.Value = value; }75 private set { MaxExpressionLengthParameter.Value = value; } 76 76 } 77 77 public IValueParameter<IntValue> MaxExpressionLengthParameter { … … 81 81 public IntValue MaxExpressionDepth { 82 82 get { return MaxExpressionDepthParameter.Value; } 83 pr otectedset { MaxExpressionDepthParameter.Value = value; }83 private set { MaxExpressionDepthParameter.Value = value; } 84 84 } 85 85 public ValueParameter<IntValue> MaxExpressionDepthParameter { … … 89 89 public DoubleValue UpperEstimationLimit { 90 90 get { return UpperEstimationLimitParameter.Value; } 91 pr otectedset { UpperEstimationLimitParameter.Value = value; }91 private set { UpperEstimationLimitParameter.Value = value; } 92 92 } 93 93 public IValueParameter<DoubleValue> UpperEstimationLimitParameter { … … 97 97 public DoubleValue LowerEstimationLimit { 98 98 get { return LowerEstimationLimitParameter.Value; } 99 pr otectedset { LowerEstimationLimitParameter.Value = value; }99 private set { LowerEstimationLimitParameter.Value = value; } 100 100 } 101 101 public IValueParameter<DoubleValue> LowerEstimationLimitParameter { … … 105 105 public IntValue MaxFunctionDefiningBranches { 106 106 get { return MaxFunctionDefiningBranchesParameter.Value; } 107 pr otectedset { MaxFunctionDefiningBranchesParameter.Value = value; }107 private set { MaxFunctionDefiningBranchesParameter.Value = value; } 108 108 } 109 109 public IValueParameter<IntValue> MaxFunctionDefiningBranchesParameter { … … 113 113 public IntValue MaxFunctionArguments { 114 114 get { return MaxFunctionArgumentsParameter.Value; } 115 pr otectedset { MaxFunctionArgumentsParameter.Value = value; }115 private set { MaxFunctionArgumentsParameter.Value = value; } 116 116 } 117 117 public IValueParameter<IntValue> MaxFunctionArgumentsParameter { … … 222 222 OnGrammarChanged(); 223 223 } 224 pr otected virtualvoid OnGrammarChanged() {224 private void OnGrammarChanged() { 225 225 ParameterizeGrammar(); 226 226 } … … 234 234 OnArchitectureParameterChanged(); 235 235 } 236 pr otected virtualvoid OnArchitectureParameterChanged() {237 ParameterizeGrammar(); 238 } 239 240 pr otected virtualvoid InitializeOperators() {236 private void OnArchitectureParameterChanged() { 237 ParameterizeGrammar(); 238 } 239 240 private void InitializeOperators() { 241 241 Operators.AddRange(ApplicationManager.Manager.GetInstances<ISymbolicExpressionTreeOperator>().OfType<IOperator>()); 242 242 Operators.Add(new MinAverageMaxSymbolicExpressionTreeSizeAnalyzer());
Note: See TracChangeset
for help on using the changeset viewer.