Free cookie consent management tool by TermsFeed Policy Generator

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

#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.