Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7181


Ignore:
Timestamp:
12/13/11 10:44:52 (12 years ago)
Author:
epitzer
Message:

#1696 Remove readonly restriction from storable fields to allow sandboxed operation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/Analysis/Aggregators/EvolvabilityAggregator.cs

    r7128 r7181  
    1818    #region Fields
    1919    [Storable]
    20     private readonly List<double> E_a;
     20    private List<double> E_a;
    2121    [Storable]
    22     private readonly List<double> E_b;
     22    private List<double> E_b;
    2323    [Storable]
    24     private readonly List<double> E_c;
     24    private List<double> E_c;
    2525    [Storable]
    26     private readonly List<double> E_d;
     26    private List<double> E_d;
    2727    [Storable]
    28     private readonly List<double> baseQualities;
     28    private List<double> baseQualities;
    2929    [Storable]
    30     private readonly List<double> expectedAbsoluteQualityDeltas;
     30    private List<double> expectedAbsoluteQualityDeltas;
    3131    [Storable]
    32     private readonly List<double> expectedRelativeQualityDeltas;
     32    private List<double> expectedRelativeQualityDeltas;
    3333    #endregion   
    3434
Note: See TracChangeset for help on using the changeset viewer.