コード例 #1
0
        public void AutoInitialization()
        {
            int currdepth = 0;
            int maxdepth = 3;

            _expression = AutoInitializeExpression(currdepth, maxdepth);
        }
コード例 #2
0
        public LeastSqureError(LeastSqureError father)
        {
            _expression = father._expression.DeepCopy();

            _timeSerials = father._timeSerials;
            _timeSpan = father._timeSpan;
        }
コード例 #3
0
        public Chromosome(Chromosome father)
        {
            _variance = father._variance.DeepCopy();
            _drift = father._drift.DeepCopy();

            _timeSerials = father._timeSerials;
            _timeSpan = father._timeSpan;
        }
コード例 #4
0
        public void AutoInitialization()
        {
            int currdepth = 0;
            int maxdepth = 3;

            _variance = AutoInitializeExpression(currdepth, maxdepth);

            currdepth = 0;
            maxdepth = 3;

            _drift = AutoInitializeExpression(currdepth, maxdepth);
        }
コード例 #5
0
 public void Deletion()
 {
     _variance = _variance.Deletion();
     _drift = _drift.Deletion();
 }
コード例 #6
0
 public void Mutation()
 {
     _variance = _variance.Mutation();
     _drift = _drift.Mutation();
 }
コード例 #7
0
 public void ManualInitialization(string driftseed, string varianceseed)
 {
     _variance = TreeNodesConstractor.BuildWholeTreeFromString(varianceseed);
     _drift = TreeNodesConstractor.BuildWholeTreeFromString(driftseed);
 }
コード例 #8
0
 public void Deletion()
 {
     _expression = _expression.Deletion();
 }
コード例 #9
0
 public void Mutation()
 {
     _expression = _expression.Mutation();
 }
コード例 #10
0
 public void ManualInitialization(string seeds)
 {
     _expression = TreeNodesConstractor.BuildWholeTreeFromString(seeds);
 }