Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.SimOpt/DefaultManipulator.cs @ 584

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

merged communication framework to trunk (ticket #279)

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.