Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/19/16 09:49:35 (8 years ago)
Author:
thasling
Message:

changed a few method names and other refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/thasling/DistributedGA/DistributedGA.Core.Host/Program.cs

    r13537 r13553  
    2525          var pop1 = CreatePopulation();
    2626          Console.WriteLine("Publish population into network...");
    27           h.PublishMigrationInfo(pop1);
     27          h.PublishDataToNetwork(pop1);
    2828          Console.WriteLine("Population published.");
    2929          Console.WriteLine("Recieved populations:");
    30           foreach (var item in h.GetMigrationInfo()) {
     30          foreach (var item in h.GetDataFromNetwork()) {
    3131            Console.WriteLine(string.Format("Population with Quality: {0:2} in Iteration {1}", item.Quality, item.IterationNumber));
    3232          }
Note: See TracChangeset for help on using the changeset viewer.