Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/23/11 16:28:50 (13 years ago)
Author:
mkommend
Message:

#1478: Added optimize button in symbolic regression simplifier view.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4/InteractiveSymbolicDiscriminantFunctionClassificationSolutionSimplifierView.cs

    r5993 r6256  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Drawing;
    2524using System.Linq;
    26 using System.Windows.Forms;
    2725using HeuristicLab.Common;
    28 using HeuristicLab.MainForm.WindowsForms;
     26using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2927using HeuristicLab.Problems.DataAnalysis.Symbolic.Views;
    30 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    3128
    3229namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views {
     
    115112      for (int i = 1; i < sourceTree.Root.SubtreesCount; i++) {
    116113        tempTree.Root.AddSubtree((ISymbolicExpressionTreeNode)sourceTree.Root.GetSubtree(i).Clone());
    117       } 
     114      }
    118115      var start = tempTree.Root.GetSubtree(0);
    119116      while (start.SubtreesCount > 0) start.RemoveSubtree(0);
     
    134131      }
    135132    }
     133
     134    protected override void btnOptimizeConstants_Click(object sender, EventArgs e) {
     135
     136    }
    136137  }
    137138}
Note: See TracChangeset for help on using the changeset viewer.