Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.ExpressionGenerator/HeuristicLab.ExpressionGenerator/3.4/Interfaces/IDistribution.cs @ 14880

Last change on this file since 14880 was 14880, checked in by gkronber, 7 years ago

#2704: added more expression templates

File size: 197 bytes
Line 
1using System.Collections.Generic;
2
3namespace 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.