Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/05/10 00:48:18 (14 years ago)
Author:
swagner
Message:

Worked on refactoring of algorithm analysis and tracing (#999)

  • adapted GA and TSP
  • removed stuff related to visualizers
Location:
trunk/sources/HeuristicLab.Optimization/3.3/Interfaces
Files:
2 deleted
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IAnalyzer.cs

    r3612 r3616  
    2020#endregion
    2121
    22 using HeuristicLab.Common;
    2322using HeuristicLab.Core;
    2423
    2524namespace HeuristicLab.Optimization {
    2625  /// <summary>
    27   /// An interface which represents an operator for visualizing solutions.
     26  /// An interface which represents an analysis operator.
    2827  /// </summary>
    29   public interface ISolutionsVisualizer : IOperator {
    30     ILookupParameter VisualizationParameter { get; }
    31   }
     28  public interface IAnalyzer : IOperator { }
    3229}
  • trunk/sources/HeuristicLab.Optimization/3.3/Interfaces/IProblem.cs

    r3376 r3616  
    3434    IParameter EvaluatorParameter { get; }
    3535    IEvaluator Evaluator { get; }
    36     IParameter VisualizerParameter { get; }
    37     ISolutionsVisualizer Visualizer { get; }
    3836    IEnumerable<IOperator> Operators { get; }
    3937
    4038    event EventHandler SolutionCreatorChanged;
    4139    event EventHandler EvaluatorChanged;
    42     event EventHandler VisualizerChanged;
    4340    event EventHandler OperatorsChanged;
    4441  }
Note: See TracChangeset for help on using the changeset viewer.