Changeset 14747 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/PushConfiguration.cs
- Timestamp:
- 03/12/17 13:16:56 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/PushConfiguration.cs
r14744 r14747 58 58 this.isNameStackEnabled = origin.IsNameStackEnabled; 59 59 this.isCodeStackEnabled = origin.IsCodeStackEnabled; 60 this.isExecStackEnabled = origin.IsExecStackEnable ;60 this.isExecStackEnabled = origin.IsExecStackEnabled; 61 61 } 62 62 … … 155 155 private bool isExecStackEnabled = true; 156 156 157 public bool IsExecStackEnable 157 public bool IsExecStackEnabled 158 158 { 159 159 get … … 347 347 IsCodeStackEnabled = value; 348 348 break; 349 case StackType.Exec: 350 this.IsExecStackEnabled = value; 351 break; 349 352 default: throw new InvalidOperationException("Stacktype unkown"); 350 353 }
Note: See TracChangeset
for help on using the changeset viewer.