Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/23/16 22:51:27 (8 years ago)
Author:
abeham
Message:

#2457:

  • Renamed remaining files from ExpertSystem to KnowledgeCenter
  • Added ability to scatter plot to display a regression line
  • Allowed to execute multiple instances at once and displaying either only final result or tracking result
  • Split runs in seeded runs and instance runs
File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/OptimizationKnowledgeCenter.cs

    r13721 r13722  
    2828
    2929namespace HeuristicLab.OptimizationExpertSystem {
    30   public partial class OptimizationExpertSystem : DockingMainForm {
     30  public partial class OptimizationKnowledgeCenter : DockingMainForm {
    3131    private ToolStripProgressBar progressBar;
    3232    private ToolStripLabel progressLabel;
    3333
    34     public ExpertSystem ExpertSystem { get; private set; }
     34    public KnowledgeCenter ExpertSystem { get; private set; }
    3535   
    36     public OptimizationExpertSystem(Type userInterfaceType) : base(userInterfaceType) {
     36    public OptimizationKnowledgeCenter(Type userInterfaceType) : base(userInterfaceType) {
    3737      InitializeComponent();
    38       ExpertSystem = new ExpertSystem();
     38      ExpertSystem = new KnowledgeCenter();
    3939      ExpertSystem.DownloadStarted += ExpertSystemOnDownloadStarted;
    4040      ShowContentInViewHost = false;
Note: See TracChangeset for help on using the changeset viewer.