Changeset 15273 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Views
- Timestamp:
- 07/19/17 12:55:58 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Views
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Views/ExpressionSelectionView.cs
r15189 r15273 15 15 16 16 [View("Push Expression Selection Editor")] 17 [Content(typeof(IE nabledExpressionsConfiguration), true)]17 [Content(typeof(IExpressionsConfiguration), true)] 18 18 public partial class ExpressionSelectionView : ItemView { 19 19 public ExpressionSelectionView() { … … 24 24 } 25 25 26 public new IE nabledExpressionsConfiguration Content26 public new IExpressionsConfiguration Content 27 27 { 28 get { return (IE nabledExpressionsConfiguration)base.Content; }28 get { return (IExpressionsConfiguration)base.Content; } 29 29 set 30 30 { -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Views/PushDebuggerView.cs
r15032 r15273 54 54 } 55 55 56 interpreter = pool.Create(Content.Random); 56 var random = Content.GetRandom(); 57 interpreter = pool.Create(random); 57 58 58 59 InitDebugLists(Content.Config);
Note: See TracChangeset
for help on using the changeset viewer.