Last change
on this file since 583 was
583,
checked in by abeham, 16 years ago
|
Adding communication framework to branch 3.1 (ticket #278)
|
File size:
578 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Core;
|
---|
6 | using HeuristicLab.Data;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.SimOpt {
|
---|
9 | public class DefaultInitializer : SimOptInitializationOperatorBase {
|
---|
10 | public override string Description {
|
---|
11 | get { return @"Does not perform initialization of the variable, but leaves it 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.