Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization/3.3/IRunCollectionModifier.cs @ 6662

Last change on this file since 6662 was 6662, checked in by epitzer, 13 years ago

Create RunCollectionModificationEvaluator that evaluates IRunCollectionModifiers (#1622)

File size: 260 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6
7namespace HeuristicLab.Optimization {
8  public interface IRunCollectionModifier : IItem {   
9    void Modify(List<IRun> runs);
10  }
11}
Note: See TracBrowser for help on using the repository browser.