Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Hive/MigrationStrategy.cs @ 13957

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

#2615:
implemented mechanism to check wheter recieved packages are from the same problem instance or not
added several config parameters to P2PMigrationAnalyzer
added new enum for migration strategies

File size: 289 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace DistributedGA.Hive {
8  public enum MigrationStrategy  { TakeBestReplaceBad, TakeRandomReplaceBad, TakeBestReplaceRandom, TakeRandomReplaceRandom };
9}
Note: See TracBrowser for help on using the repository browser.