Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/29/09 18:28:45 (15 years ago)
Author:
gkronber
Message:

GP Refactoring #713

  • introduced a plugin for GP interfaces
  • created a new interface IGeneticProgrammingModel which represents GP models in HL scopes instead of IFunctionTree
  • changed interfaces IFunction and IFunctionTree
  • moved some files to new directories (general housekeeping)
  • changed all GP operators and engines to work with IGeneticProgrammingModels
  • removed parameters TreeSize and TreeHeight in all GP operators
  • changed parameter OperatorLibrary to FunctionLibrary in all GP operators
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GP-Refactoring-713/sources/HeuristicLab.Random/3.2/NormalDistributedRandom.cs

    r1530 r2210  
    5555    }
    5656    private IRandom uniform;
    57     private double[] w = new double[] {
     57    private static readonly double[] w = new double[] {
    5858      1.7290404664e-09,
    5959      1.2680928529e-10,
     
    185185      1.6030947680e-09
    186186    };
    187     private long[] k = new long[] {
     187    private static readonly long[] k = new long[] {
    188188      1991057938,
    189189      0,
     
    315315      2010539237
    316316   };
    317     private double[] f = new double[] {
     317    private static readonly double[] f = new double[] {
    318318      1.0000000000e+00,
    319319      9.6359968185e-01,
Note: See TracChangeset for help on using the changeset viewer.