Changeset 4040
- Timestamp:
- 07/17/10 01:20:46 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/CrowdedComparisonSorter.cs ¶
r4039 r4040 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 19 19 */ 20 20 #endregion 21 21 22 using System; 22 23 using System.Collections.Generic; 23 24 using System.Linq; 24 using System.Text;25 25 using HeuristicLab.Core; 26 using HeuristicLab.Common;27 26 using HeuristicLab.Data; 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;29 27 using HeuristicLab.Operators; 30 28 using HeuristicLab.Parameters; 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 30 32 31 namespace HeuristicLab.Algorithms.NSGA2 { -
TabularUnified trunk/sources/HeuristicLab.Algorithms.NSGA2/3.3/FastNonDominatedSort.cs ¶
r4039 r4040 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-20 08Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 19 19 */ 20 20 #endregion 21 21 22 using System; 22 23 using System.Collections.Generic; 23 using System.Linq;24 using System.Text;25 24 using HeuristicLab.Core; 26 using HeuristicLab.Common;27 25 using HeuristicLab.Data; 28 26 using HeuristicLab.Operators; 27 using HeuristicLab.Parameters; 29 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 using HeuristicLab.Parameters;31 29 32 30 namespace HeuristicLab.Algorithms.NSGA2 {
Note: See TracChangeset
for help on using the changeset viewer.