- Timestamp:
- 07/12/20 15:35:34 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2825-NSGA3/HeuristicLab.Algorithms.NSGA3/3.3/Utility.cs
r17658 r17664 116 116 internal static Tuple<TIn, TOut> MinArgMin<TIn, TOut>(Func<TIn, TOut> func, IEnumerable<TIn> inputs) where TOut : IComparable 117 117 { 118 if (func == null) throw new ArgumentNullException(nameof(func)); 118 119 if (inputs == null) throw new ArgumentNullException(nameof(inputs)); 119 120 var it = inputs.GetEnumerator(); … … 162 163 internal static Tuple<TIn, TOut> MaxArgMax<TIn, TOut>(Func<TIn, TOut> func, IEnumerable<TIn> inputs) where TOut : IComparable 163 164 { 165 if (func == null) throw new ArgumentNullException(nameof(func)); 164 166 if (inputs == null) throw new ArgumentNullException(nameof(inputs)); 165 167 var it = inputs.GetEnumerator();
Note: See TracChangeset
for help on using the changeset viewer.