Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/12/18 15:12:29 (6 years ago)
Author:
abeham
Message:

#2457:

  • Restructured FLA plugin (moved files between folders, added common base classes)
  • Fixed AC1 in QAPDirectedWalk (ouch!)
  • Changed PartialInformationContent to be in range [0;1]
  • Added unit test for information analysis
  • Refactored information analysis and discard ability to use more symbols than 2 as shapes
Location:
branches/2457_ExpertSystem
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2457_ExpertSystem

    • Property svn:ignore
      •  

        old new  
        55.gitignore
        66.vs
         7packages
  • branches/2457_ExpertSystem/HeuristicLab.Analysis.FitnessLandscape/3.3/Analysis/InformationAnalyzer.cs

    r16096 r16137  
    9191
    9292      Parameters.Add(new ValueLookupParameter<IntValue>("NQuantiles", "The number of delta quantiles to display", new IntValue(20)));
    93       Parameters.Add(new ValueLookupParameter<IntValue>("ShapeSize", "The number of slopes to consider as shapes.", new IntValue(2)));
    9493
    9594      Parameters.Add(new LookupParameter<DoubleValue>("InformationContent", "The information content H(0) at eps = 0"));
     
    118117
    119118      var nQuantiles = NQuantilesParameter.ActualValue.Value;
    120       var shapeSize = ShapeSizeParameter.ActualValue.Value;
    121119      var results = ResultsParameter.ActualValue;
    122120
    123       var analysis = new InformationAnalysis(qualities, nQuantiles, shapeSize);
     121      var analysis = new InformationAnalysis(qualities, nQuantiles);
    124122      var ic = new DoubleValue(analysis.InformationContent.FirstOrDefault());
    125123      InformationContentParameter.ActualValue = ic;
Note: See TracChangeset for help on using the changeset viewer.