- Timestamp:
- 06/25/19 23:14:06 (5 years ago)
- Location:
- branches/2435-alglib_3_15
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2435-alglib_3_15
- Property svn:mergeinfo changed
-
branches/2435-alglib_3_15/HeuristicLab.Core
- Property svn:mergeinfo changed
/branches/2931_OR-Tools_LP_MIP/HeuristicLab.Core (added) merged: 16373 /trunk/HeuristicLab.Core (added) merged: 16872,16907,16910,16933,16942,16945,16992,17009
- Property svn:mergeinfo changed
-
branches/2435-alglib_3_15/HeuristicLab.Core/3.3/Interfaces/ICheckedItemCollection.cs
r16565 r17034 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Attic; 23 24 using HeuristicLab.Collections; 24 using HEAL.Attic;25 25 26 26 namespace HeuristicLab.Core { … … 31 31 bool ItemChecked(T item); 32 32 void SetItemCheckedState(T item, bool checkedState); 33 void SetItemCheckedState(IEnumerable<T> item, bool checkedState); 33 34 void Add(T item, bool checkedState); 34 35 } -
branches/2435-alglib_3_15/HeuristicLab.Core/3.3/Interfaces/ICheckedItemList.cs
r16565 r17034 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Attic; 23 24 using HeuristicLab.Collections; 24 using HEAL.Attic;25 25 26 26 namespace HeuristicLab.Core { … … 30 30 IEnumerable<IndexedItem<T>> CheckedItems { get; } 31 31 bool ItemChecked(T item); 32 bool ItemChecked(int itemIndex); 32 33 void SetItemCheckedState(T item, bool checkedState); 34 void SetItemCheckedState(IEnumerable<T> items, bool checkedState); 35 void SetItemCheckedState(int itemIndex, bool checkedState); 36 void SetItemCheckedState(IEnumerable<int> itemIndices, bool checkedState); 33 37 void Add(T item, bool checkedState); 34 38 void Insert(int index, T item, bool checkedState); -
branches/2435-alglib_3_15/HeuristicLab.Core/3.3/Interfaces/IValueParameter.cs
r16565 r17034 27 27 public interface IValueParameter : IParameter { 28 28 IItem Value { get; set; } 29 bool ReadOnly { get; set; } 29 30 bool GetsCollected { get; set; } 30 31 event EventHandler ValueChanged; 32 event EventHandler ReadOnlyChanged; 31 33 event EventHandler GetsCollectedChanged; 32 34 }
Note: See TracChangeset
for help on using the changeset viewer.