Changeset 16577 for addons/HeuristicLab.FitnessLandscapeAnalysis
- Timestamp:
- 01/29/19 09:48:00 (6 years ago)
- Location:
- addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/IAggregator.cs
r7128 r16577 1 1 using HeuristicLab.Core; 2 2 using HeuristicLab.Optimization; 3 using HEAL.Attic; 3 4 4 5 namespace HeuristicLab.Analysis.FitnessLandscape { 5 6 [StorableType("C167C0FA-EF7E-4861-939D-6FAB9EFCCDAF")] 6 7 public interface IAggregator : IItem { 7 8 void MaybeAddResult(IResult result); -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/IQualityTrailAnalyzer.cs
r7128 r16577 20 20 #endregion 21 21 using HeuristicLab.Optimization; 22 using HEAL.Attic; 23 22 24 namespace HeuristicLab.Analysis.FitnessLandscape { 25 [StorableType("EF30D067-9463-4A6B-ADDD-4A5F83A32D03")] 23 26 public interface IQualityTrailAnalyzer : IAnalyzer { } 24 27 } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/IBoxChartElementGenerator.cs
r7210 r16577 1 using System; 2 using System.Collections.Generic; 3 using System.Drawing; 4 using System.Drawing.Drawing2D; 5 using System.Linq; 6 using System.Text; 7 using HeuristicLab.Common; 1 using System.Drawing; 8 2 using HeuristicLab.Core; 9 using HeuristicLab.Data;10 3 using HeuristicLab.Optimization; 11 using HeuristicLab.Parameters; 12 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 4 using HEAL.Attic; 13 5 14 6 namespace HeuristicLab.Analysis.FitnessLandscape.BoxCharts { 15 7 [StorableType("57F0E930-CB8F-4D30-9C44-ADA5B720727E")] 16 8 public interface IBoxChartElementGenerator : INamedItem { 17 9 int X { get; set; } -
addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/DistanceCalculators/IItemDistanceCalculator.cs
r7128 r16577 1 1 using System; 2 using System.Collections.Generic;3 using System.Linq;4 using System.Text;5 2 using HeuristicLab.Core; 3 using HEAL.Attic; 6 4 7 5 namespace HeuristicLab.Analysis.FitnessLandscape.DistanceCalculators { 6 [StorableType("79CBD877-B9E9-4CFE-B1E3-5FCF0DB17EF1")] 8 7 public interface IItemDistanceCalculator : IItem { 9 8 Type ItemType { get; }
Note: See TracChangeset
for help on using the changeset viewer.