Last change
on this file since 13543 was
13524,
checked in by thasling, 9 years ago
|
Upload des Projekts letztendlich, trotz buggendes Clients...
|
File size:
966 bytes
|
Line | |
---|
1 | using DistributedGA.Core;
|
---|
2 | using DistributedGA.Core.Implementation;
|
---|
3 | using DistributedGA.Core.Interface;
|
---|
4 | using DistributedGA.Operator.Interface;
|
---|
5 | using System;
|
---|
6 | using System.Collections.Generic;
|
---|
7 | using System.Linq;
|
---|
8 | using System.Text;
|
---|
9 | using System.Threading.Tasks;
|
---|
10 |
|
---|
11 | namespace 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.