Changeset 3280 for trunk/sources/HeuristicLab.Algorithms.TabuSearch
- Timestamp:
- 04/07/10 05:22:33 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Algorithms.TabuSearch/3.3/TabuSearch.cs ¶
r3275 r3280 33 33 34 34 namespace HeuristicLab.Algorithms.TabuSearch { 35 [Item("Tabu Search", "A tabu search algorithm.")]35 [Item("Tabu Search", "A tabu search algorithm.")] 36 36 [Creatable("Algorithms")] 37 37 [StorableClass] … … 128 128 #endregion 129 129 130 [StorableConstructor]131 private TabuSearch(bool deserializing) : base() { }132 130 public TabuSearch() 133 131 : base() { … … 169 167 Initialize(); 170 168 } 169 [StorableConstructor] 170 private TabuSearch(bool deserializing) : base(deserializing) { } 171 171 172 172 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.