Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MoveOperators/HeuristicLab.Optimization/3.3/Interfaces/IRunCollectionModifier.cs @ 10088

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

#1622: Move run collection modifiers into a separate folder

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.