Last change
on this file since 13365 was
8744,
checked in by epitzer, 12 years ago
|
Improve Information Analyzer #1696
- Configurable discretized or full quantile analysis
- Configurable shape size
- Include peak information values and deltas in results
|
File size:
837 bytes
|
Rev | Line | |
---|
[8744] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace HeuristicLab.Analysis.FitnessLandscape {
|
---|
| 7 | public static class DictionaryExtensions {
|
---|
| 8 | public static TValue GetValueOrDefault<TKey, TValue>(this IDictionary<TKey, TValue> d, TKey key, Func<TValue> provider) {
|
---|
| 9 | var value = provider();
|
---|
| 10 | d.TryGetValue(key, out value);
|
---|
| 11 | return value;
|
---|
| 12 | }
|
---|
| 13 | public static TValue GetValueOrDefault<TKey, TValue>(this IDictionary<TKey, TValue> d, TKey key, TValue def) {
|
---|
| 14 | var value = def;
|
---|
| 15 | d.TryGetValue(key, out value);
|
---|
| 16 | return value;
|
---|
| 17 | }
|
---|
| 18 | public static TValue GetValueOrDefault<TKey, TValue>(this IDictionary<TKey, TValue> d, TKey key) {
|
---|
| 19 | var value = default(TValue);
|
---|
| 20 | d.TryGetValue(key, out value);
|
---|
| 21 | return value;
|
---|
| 22 | }
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.