Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/15/14 13:50:37 (10 years ago)
Author:
bburlacu
Message:

#1772: Merged trunk changes.

Location:
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic

  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SymbolicDataAnalysisExpressionTreeSimilarityCalculator.cs

    r10302 r10456  
    4040
    4141    public IScopeTreeLookupParameter<ISymbolicExpressionTree> SymbolicExpressionTreeParameter {
    42       get {
    43         return (IScopeTreeLookupParameter<ISymbolicExpressionTree>)Parameters[SymbolicExpressionTreeParameterName];
    44       }
     42      get { return (IScopeTreeLookupParameter<ISymbolicExpressionTree>)Parameters[SymbolicExpressionTreeParameterName]; }
    4543    }
    4644
     
    9088    public SymbolicDataAnalysisExpressionTreeSimilarityCalculator()
    9189      : base() {
    92       Parameters.Add(new ScopeTreeLookupParameter<ISymbolicExpressionTree>(SymbolicExpressionTreeParameterName,
    93         "The symbolic expression trees to analyze."));
     90      Parameters.Add(new ScopeTreeLookupParameter<ISymbolicExpressionTree>(SymbolicExpressionTreeParameterName, "The symbolic expression trees to analyze."));
    9491      Parameters.Add(new ValueParameter<ISymbolicExpressionTree>(CurrentSymbolicExpressionTreeParameterName, ""));
    95       Parameters.Add(new LookupParameter<BoolValue>(MatchVariablesParameterName,
    96         "Specify if the symbolic expression tree comparer should match variable names."));
    97       Parameters.Add(new LookupParameter<BoolValue>(MatchVariableWeightsParameterName,
    98         "Specify if the symbolic expression tree comparer should match variable weights."));
    99       Parameters.Add(new LookupParameter<BoolValue>(MatchConstantValuesParameterName,
    100         "Specify if the symbolic expression tree comparer should match constant values."));
     92      Parameters.Add(new LookupParameter<BoolValue>(MatchVariablesParameterName, "Specify if the symbolic expression tree comparer should match variable names."));
     93      Parameters.Add(new LookupParameter<BoolValue>(MatchVariableWeightsParameterName, "Specify if the symbolic expression tree comparer should match variable weights."));
     94      Parameters.Add(new LookupParameter<BoolValue>(MatchConstantValuesParameterName, "Specify if the symbolic expression tree comparer should match constant values."));
    10195      Parameters.Add(new LookupParameter<DoubleValue>(SimilarityValuesParmeterName, ""));
    10296    }
Note: See TracChangeset for help on using the changeset viewer.