Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Operator/Implementation/DefaultMigrationOperator.cs @ 13524

Last change on this file since 13524 was 13524, checked in by thasling, 8 years ago

Upload des Projekts letztendlich, trotz buggendes Clients...

File size: 966 bytes
Line 
1using DistributedGA.Core;
2using DistributedGA.Core.Implementation;
3using DistributedGA.Core.Interface;
4using DistributedGA.Operator.Interface;
5using System;
6using System.Collections.Generic;
7using System.Linq;
8using System.Text;
9using System.Threading.Tasks;
10
11namespace DistributedGA.Operator.Implementation
12{
13   public class DefaultMigrationOperator : IMigrationOperator
14    {
15       private IMessageHandler networkLayer = new PeerNetworkMessageHandler();
16
17        public void Init()
18        {
19           //maybe init networklayer
20        }
21
22        public void Apply(Solution[] population)
23        {
24            throw new NotImplementedException();
25        }
26
27        public SolutionInfo[] GetMigrationInfo()
28        {
29            throw new NotImplementedException();
30        }
31
32        public void PublishMigrationInfo(SolutionInfo[] population)
33        {
34            throw new NotImplementedException();
35        }
36    }
37}
Note: See TracBrowser for help on using the repository browser.