Changeset 13792
- Timestamp:
- 04/25/16 13:00:00 (9 years ago)
- Location:
- branches/PerformanceComparison
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PerformanceComparison/HeuristicLab.Analysis
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/PerformanceComparison/HeuristicLab.Analysis.Views
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/PerformanceComparison/HeuristicLab.Encodings.PermutationEncoding
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/PerformanceComparison/HeuristicLab.Optimization
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Optimization merged: 13779
- Property svn:mergeinfo changed
-
branches/PerformanceComparison/HeuristicLab.Optimization.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Optimization.Views merged: 13560,13570
- Property svn:mergeinfo changed
-
branches/PerformanceComparison/HeuristicLab.Optimization.Views/3.3/AlgorithmView.cs
r12012 r13792 133 133 Invoke(new EventHandler(Content_ProblemChanged), sender, e); 134 134 else { 135 problemViewHost.ViewType = null; 135 if (problemViewHost.Content != null && Content.Problem != null && 136 problemViewHost.Content.GetType() != Content.Problem.GetType()) 137 problemViewHost.ViewType = null; 136 138 problemViewHost.Content = Content.Problem; 137 139 } -
branches/PerformanceComparison/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionTableView.cs
r13583 r13792 20 20 #endregion 21 21 22 using HeuristicLab.Core;23 using HeuristicLab.Data.Views;24 using HeuristicLab.MainForm;25 22 using System; 26 23 using System.Collections.Generic; … … 28 25 using System.Linq; 29 26 using System.Windows.Forms; 27 using HeuristicLab.Core; 28 using HeuristicLab.Data.Views; 29 using HeuristicLab.MainForm; 30 30 31 31 namespace HeuristicLab.Optimization.Views { -
branches/PerformanceComparison/HeuristicLab.Optimization/3.3/Termination/ExecutionTimeTerminator.cs
r12529 r13792 38 38 protected ExecutionTimeTerminator(ExecutionTimeTerminator original, Cloner cloner) 39 39 : base(original, cloner) { 40 executable = cloner.Clone( executable);40 executable = cloner.Clone(original.executable); 41 41 } 42 42 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.