- Timestamp:
- 01/15/16 17:42:35 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/ViewModel/EvaluationViewModel.cs
r12833 r13518 122 122 } 123 123 124 private double epsylon;125 126 public double Epsylon127 { 128 get { return this. epsylon; }129 set 130 { 131 this. epsylon= value;132 this.OnPropertyChanged(" Epsylon");124 private double _policyParameter; 125 126 public double PolicyParameter 127 { 128 get { return this._policyParameter; } 129 set 130 { 131 this._policyParameter = value; 132 this.OnPropertyChanged("PolicyParameter"); 133 133 } 134 134 }
Note: See TracChangeset
for help on using the changeset viewer.