Changeset 16472
- Timestamp:
- 12/30/18 09:16:51 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration
- Files:
-
- 1 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/IIndicator.cs
r16453 r16472 23 23 using HeuristicLab.Encodings.RealVectorEncoding; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Fossil; 25 26 26 27 namespace HeuristicLab.Algorithms.MOCMAEvolutionStrategy { 28 [StorableType("5f3f2453-dbf0-46d8-be15-8b6bb9f88592")] 27 29 public interface IIndicator : IItem { 28 30 /// <summary> -
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/EnumerableBoolEqualityComparer.cs
r16453 r16472 22 22 using System.Collections.Generic; 23 23 using System.Linq; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid { 27 [StorableType("231ae77d-4352-4a70-8662-5f3d5d44f095")] 26 28 public class EnumerableBoolEqualityComparer : IEqualityComparer<IEnumerable<bool>> { 27 29 public bool Equals(IEnumerable<bool> first, IEnumerable<bool> second) { -
branches/2520_PersistenceReintegration/HeuristicLab.Analysis/3.3/Statistics/Fitting/LinearLeastSquaresFitting.cs
r16453 r16472 32 32 public void Calculate(double[] y, double[] x, out double slope, out double intercept) { 33 33 if (y.Count() != x.Count()) { 34 throw new ArgumentException("The leng htof x and y needs do be equal. ");34 throw new ArgumentException("The length of x and y needs do be equal. "); 35 35 } 36 36 -
branches/2520_PersistenceReintegration/HeuristicLab.Analysis/3.3/Statistics/Fitting/LogFitting.cs
r16453 r16472 41 41 public void Calculate(double[] y, double[] x, out double p0, out double p1) { 42 42 if (y.Count() != x.Count()) { 43 throw new ArgumentException("The leng htof x and y needs do be equal. ");43 throw new ArgumentException("The length of x and y needs do be equal. "); 44 44 } 45 45 -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableArray.cs
r16453 r16472 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Collections { 27 [StorableType("ebdc610c-2f22-42c7-a72e-8a4ec682712f")] 26 28 public interface IObservableArray<T> : IList<T>, INotifyObservableArrayItemsChanged<T>, INotifyPropertyChanged { 27 29 int Length { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableCollection.cs
r16453 r16472 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Collections { 27 [StorableType("289d81e9-a167-416c-aaa8-c40aa1ea96f9")] 26 28 public interface IObservableCollection<T> : ICollection<T>, INotifyObservableCollectionItemsChanged<T>, INotifyPropertyChanged { } 27 29 } -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableDictionary.cs
r16453 r16472 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("70d9ec0d-7a88-424a-9f59-6cc659f57369")] 25 27 public interface IObservableDictionary<TKey, TValue> : IDictionary<TKey, TValue>, IObservableCollection<KeyValuePair<TKey, TValue>>, INotifyObservableDictionaryItemsChanged<TKey, TValue> { } 26 28 } -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableList.cs
r16453 r16472 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("00be7255-b5c6-4b5d-82d3-6ed258d6a0c9")] 25 27 public interface IObservableList<T> : IList<T>, IObservableCollection<T>, INotifyObservableListItemsChanged<T> { 26 28 void Reverse(); -
branches/2520_PersistenceReintegration/HeuristicLab.Collections/3.3/IObservableSet.cs
r16453 r16472 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Collections { 26 [StorableType("2c42f57a-3bdb-45b9-a548-d4cb9cc71250")] 25 27 public interface IObservableSet<T> : IObservableCollection<T> { 26 28 bool IsProperSubsetOf(IEnumerable<T> other); -
branches/2520_PersistenceReintegration/HeuristicLab.Common/3.3/IDeepCloneable.cs
r16453 r16472 21 21 22 22 using System; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Common { 26 [StorableType("54fef53f-3ccc-4493-8973-a8bbdad32ba2")] 25 27 public interface IDeepCloneable : ICloneable { 26 28 /// <summary> -
branches/2520_PersistenceReintegration/HeuristicLab.Common/3.3/TypeEqualityComparer.cs
r16453 r16472 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Common { 26 [StorableType("b5330cc7-9b2c-4b84-9147-1dcc6c316403")] 25 27 public class TypeEqualityComparer<T> : IEqualityComparer<T> { 26 28
Note: See TracChangeset
for help on using the changeset viewer.