source:
branches/2704_HeuristicLab.ExpressionGenerator/HeuristicLab.ExpressionGenerator/3.4/Interfaces/IDistribution.cs
@
16654
Last change on this file since 16654 was 14880, checked in by gkronber, 8 years ago | |
---|---|
File size: 197 bytes |
Line | |
---|---|
1 | using System.Collections.Generic; |
2 | |
3 | namespace HeuristicLab.ExpressionGenerator.Interfaces { |
4 | public interface IDistribution<T> { |
5 | T Sample(); |
6 | IEnumerable<T> SampleN(int n); |
7 | } |
8 | } |
Note: See TracBrowser
for help on using the repository browser.