Changeset 8565 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis
- Timestamp:
- 09/04/12 11:25:56 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/CovarianceSEard.cs
r8491 r8565 37 37 [Storable] 38 38 private double[] inverseLength; 39 public double[] Length {39 public double[] InverseLength { 40 40 get { 41 41 if (inverseLength == null) return new double[0]; … … 53 53 protected CovarianceSEard(CovarianceSEard original, Cloner cloner) 54 54 : base(original, cloner) { 55 if (original.inverseLength != null) { 56 this.inverseLength = new double[original.inverseLength.Length]; 57 Array.Copy(original.inverseLength, this.inverseLength, inverseLength.Length); 58 } 55 this.inverseLength = original.InverseLength; // array is cloned in the getter 59 56 this.sf2 = original.sf2; 60 57 } -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/HeuristicLab.Algorithms.DataAnalysis-3.4.csproj
r8562 r8565 120 120 </Compile> 121 121 <Compile Include="FixedDataAnalysisAlgorithm.cs" /> 122 <Compile Include="GaussianProcess\CovarianceRQArd.cs" /> 122 123 <Compile Include="GaussianProcess\CovarianceMaternIso.cs" /> 123 124 <Compile Include="GaussianProcess\CovarianceLinearArd.cs" />
Note: See TracChangeset
for help on using the changeset viewer.