Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/20/13 21:31:41 (11 years ago)
Author:
gkronber
Message:

#2026: finished tree searcher for artifical ant, multiplexer and even parity examples. (+ performance tweak in Artificial Ant.txt)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GPDL/Examples/Artificial Ant.txt

    r10061 r10074  
    8686 
    8787  public void Reset() {
    88     world = LosAltosTrail.Select(l=>l.ToArray()).ToArray();
     88    for(int row = 0; row<world.Length;row++)
     89      for(int col = 0; col < world[row].Length; col++) {
     90        world[row][col] = LosAltosTrail[row][col];
     91      }
    8992  }
    9093 
     
    209212  .
    210213
    211   Prog2<<World world, AntState state>> = 
     214  Prog2<<World world, AntState state>> =
    212215    Ant<<world, state>> Ant<<world, state>>
    213216  .
Note: See TracChangeset for help on using the changeset viewer.