Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.1/sources/HeuristicLab.SimOpt/DefaultManipulator.cs @ 588

Last change on this file since 588 was 583, checked in by abeham, 16 years ago

Adding communication framework to branch 3.1 (ticket #278)

File size: 572 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Core;
6using HeuristicLab.Data;
7
8namespace HeuristicLab.SimOpt {
9  public class DefaultManipulator : SimOptManipulationOperatorBase {
10    public override string Description {
11      get { return @"Does not perform any manipulation, instead leaves the data as it is"; }
12    }
13
14    public override IOperation Apply(IScope scope) {
15      return null;
16    }
17
18    protected override void Apply(IScope scope, IRandom random, IItem item) {
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.