Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/21/13 11:29:55 (11 years ago)
Author:
sawinkle
Message:

#2109:

  • For each newly created node, ResetLocalParameters() has to be called, if possible. Otherwise 'Variable' symbols won't be initialized correctly. (E.g. internal ValueName is null and causes exceptions.)
  • Method MapDepthFirstRecursively() of DepthFirstMapper.cs checks subtree boundaries by using the MinimumArity instead of the MaximumArity. Otherwise e.g. adding the 'Addition' symbol will cause very short trees, because this symbol has got a MaximumArity of 255! This would cause, that the tree is immediately full, after insertion of one 'Addition' symbol, if the genotype length is e.g. just 100.
  • Several bug fixes.
  • Unresolved issues:
    • Changes in the selected grammar are not taken into account during a run (e.g. 'Addition' symbols will be inserted into the tree, although its checkbox was unchecked previously).
    • Exception, if a division by zero is tried.
    • Wrapping mechanism.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GrammaticalEvolution/HeuristicLab.Problems.GrammaticalEvolution/Symbolic/GESymbolicDataAnalysisSingleObjectiveProblem.cs

    r10073 r10075  
    3434namespace HeuristicLab.Problems.GrammaticalEvolution {
    3535  [StorableClass]
    36   public abstract class GESymbolicDataAnalysisSingleObjectiveProblem<T, U, V> : GESymbolicDataAnalysisProblem<T, U, V>, ISymbolicDataAnalysisSingleObjectiveProblem
    37     where T : class,IDataAnalysisProblemData
     36  public abstract class GESymbolicDataAnalysisSingleObjectiveProblem<T, U, V> : GESymbolicDataAnalysisProblem<T, U, V>,
     37                                                                                ISymbolicDataAnalysisSingleObjectiveProblem
     38    where T : class, IDataAnalysisProblemData
    3839    where U : class, IGESymbolicDataAnalysisSingleObjectiveEvaluator<T>
    3940    where V : class, IIntegerVectorCreator {
Note: See TracChangeset for help on using the changeset viewer.