Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/15 11:37:49 (9 years ago)
Author:
aballeit
Message:

#2283 EpsGreedy Textbox for Epsylon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/ViewModel/EvaluationViewModel.cs

    r12832 r12833  
    119119                this.maxThreads = value;
    120120                this.OnPropertyChanged("MaxThreads");
     121            }
     122        }
     123
     124        private double epsylon;
     125
     126        public double Epsylon
     127        {
     128            get { return this.epsylon; }
     129            set
     130            {
     131                this.epsylon = value;
     132                this.OnPropertyChanged("Epsylon");
    121133            }
    122134        }
Note: See TracChangeset for help on using the changeset viewer.