CSCI 1200 Data Structures
Fall 2012
Home
  Contact Information

Announcements
  LMS

Syllabus
  Learning Outcomes
  Prerequistites
  Grading Criteria

References
  Optional Textbooks
  Web Resources
  C++ Development
  Misc. Programming Info
  Memory Debugging

Getting Help
  Tutoring
  Advice from TAs
  Advice from Students
  2007 Course Review

Calendar
  Lecture notes
  Lab materials
  Homework
  Test reviews

Weekly Schedule
  Office Hours
  Lab Times

Academic Integrity

Homework
  Due Date and Time
  Late Day Policy
  Compilers
  Electronic Submission

Homework 8: City Chase Contest

CONTEST PROCEDURES

Each evader algorithm from the 102 student homework submissions was compiled with each of the 102 pursuer algorithms. The "moves randomly" and "never moves" algorithms for both evader and pursuer were also included in the contest. This produced over 10,000 different executables. 3 simple graphs ("game_test", "square", and "line") plus 9 graphs submitted by students were used for the contest. Each of the ~10,000 executables was run 10 times with each graph for a game of up to 100 'ticks' (1.2 million program runs). The score for each run is the number of ticks that the evader survives uncaptured by any of the pursuers. The results of these 10 runs for each executable are averaged.

Thus, a high score indicates a good evader algorithm and a low score indicates a good pursuer algorithm. If the executable failed to compile, crashed during the run, or did not complete the test within the contest limit of 10 seconds, the evader receives a score of 0 and the pursuer receives a score of 100 (the worst case outcome for both parties, since we don't know which algorithm caused the problem). This result is colored red in the tables below.

The scores for each pursuer and evader are averaged across all 104 opponents. The tables are sorted (high score for evader & low score for pursuer) and the top 30 performers for each graph are presented in the tables below. The "moves_randomly" & "never_moves" algorithms are shown for comparison purposes even if the algorithm didn't rate in the top 30 for that graph.


EVADER STRATEGIES

  • common strategies
    • checks for pursuers in neighboring cities, moves to last city checked that doesn't have an evader
    • also check for pursuers in the neighboring cities of the candidate city
    • otherwise choose at random
    • maximize the minimum distance from the pursuers
    • move to the unoccupied connected city that has the most neighbors for greatest chance of escape
    • goes to the city with the local minimum number of neighbors.
    • it then moves to one of the neighbors that has the fewest potential pursuers.
  • clarkb7: if no pursuers next to current city, don't move. compares evader neighbors & pursuer neighbors, picks least likely for pursuer to go to. prioritizes cities with more neighbors.
  • diamog: looks for safe spot (no pursuers as neighbors or in the location) with the most neighbors. else, finds empty neighbor with least surrounding pursuers, else moves randomly.
  • eastlk: moves to city with the greatest minimum distance from all pursuers. if tied move to the city with more connections.
  • haynep: don't move if can't be caught. else move to city that pursuers cannot reach this round. else move to city containing the pursuer.
  • higlec: don't move to a city adjacent to a pursuer, consider distance of closest pursuer.
  • lehnem2: don't move if the current position of the evader is unreachable by the pursuers in this tick. move to neighboring city if unreachable by the pursuers. otherwise pick a random city.
  • lawp: if the pursuers are far away, move in the direction of the most highly connected nodes. otherwise, move to the city that is the farthest away from the nearest pursuer. special case if the evader is one city away from a pursuer: move to the city of the pursuer next to it. another special case: all cities 2 steps away have pursuers: the evader does not move.
  • lih8: collect cities the evader can reach & cities the pursuer can reach, go to cities that the evader can go but pursuer cannot. if this city doesn't exist, go to the city with most neighbors.
  • lij17: find all possible locations of the pursuers for the current move, next move and the one after, and store them in a map so duplicates are incremented accordingly. then find all of the possible locations of the evader. if any evader position is not possible position of pursuer, go there. otherwise find the least likely position and go there.
  • liuv: My evader creates a heirarchy of neighbors to move to. First choice is a city that would take any TA 3 turns to reach. Second choice is a city that would take any TA 2 turns to reach. Third choice is a city a ta is currently in. The rational for the third choice is that TAs will usually be constantly moving so any city a TA is currently in will not likely be occupied by the same TA. Cities of last resorts are those a TA can reach in 1 turn, i.e. this turn.
  • mancht: The evader moves to the current location of the first pursuer in the list of pursuers. This only works if the pursuers aren't set to remain in the same city.
  • nortod2: evader always move to its neighbor with the most connectinons. if a pursuer is nearby, the evader will make every effort to move to a city which no pursuers can reach. evader will move to a city containing a pursuer, hoping that the pursuer will not have expected such a move. if no neighbor contains a pursuer, but all can be reached by a pursuer on the next turn, the evader will stand still
  • pfeffa: looking for most possible routes, excluding those blocked by pursuers. unless adjacent to pursuer, never enters a space adjacent to a pursuer.
  • radocm: don't go to a space that could be occupied by a pursuer this turn or next turn. go to the space occupied by the pursuer (hoping they pass).
  • stammn:
  • sussea: in 'scared' mode, safety of city takes priority to number of exits. in 'not scared' mode, number of exits takes priority. scaredness is determined by proximity to closest pursuer. safeness of cities is determined by proximity to closest pursuer.
  • yostj: check for good cities (that no pursuer is next to and has more links than the current city so there are more escape routes). if there is a pursuer next to the evader, the evader will always move - to a city with many links and no pursuers next to it or to the same city as the pursuer.

PURSUER STRATEGIES

  • common strategies
    • checks for evader in neighboring cities, moves to that city otherwise it won't move
    • also check for the evader in neighboring cities of the candidate city
    • minimize the distance to the evader
    • find the neighboring city with the most neighbors in the hopes that its chances to find the evader will then be greater
    • The pursuer checks to see if it can reach any spots that the evader may run to, then randomly goes to one of those spots. If it can't reach any of the evader's neighbors, it moves randomly.
  • diamog: if the pursuer is next to the evader he either stays still or if another pursuer is next to this pursuer that pursuer will move to the evader. if the pursuer is not next to the evader he will follow the shortest path to the evader's current location.
  • faulda: as the pursuer, not moving at all will only catch you the evader if you're really lucky, so keeping on the move is a good idea.
  • huj10: if the pursuer is one city away from the evader, it will move randomly to a city. if the pursuer is two cities away from the evader, it will randomly move to cities next to the city the evader is currently in. if the pursuer is three cities away, it will go to two cities away. if the pursuer is more than three cities away, the just move randomly.
  • lawp: for each neighbor of the pursuer, find the minimum distance to the evader with a breadth-first search of the tree. move to the neighbor with the smallest distance. all cities currently occupied by pursuers are removed from consideration. this forces pursuers to approach the evader from different directions, and no two pursuers will end up in the same city (which effectively reduces the number of pursuers by one). when a pursuer is one move away from the evader, it randomly (50-50) chooses to either stay put or move on top of the evader.
  • liuv: rank citys on a point system, any city neighboring evader's current city gets a 3, the city the evader is in get a 2, and any other cities get a 1. each pursuer then figures out where every pursuer is expected to go, so that they can cover the most cities at once.
  • luongc: find shortest path to the evader and follow it. when pursuer is right next to the evader, move randomly to either the evader's city or the evader's neighor(if it can).
  • nortod2: each tick, the pursuer uses the evader's function to determine which city it is moving to. The pursuer then recursively finds the shortest route to that city, and begins moving along that path. the algorithm only looks up to 10 moves away for the target city, and if it is not found, the pursuer will simply move randomly until the evader moves into range.
  • pfeffa: follows the most direct path to evader. once adjacent, moves randomly to a position the evader could occupy next turn.
  • sussea: shortest path to the evader. try to avoid walking past each other. when evader is cornered, only one pursuer will try to go to the city of the evader. try to predict next step of evader
  • weinsa: minimize distance to the evader by seeing how far each neighbor is from the evader, sorting with a map, and using the first to choose where to go. 1/5th chance for the pursuer to move randomly.
  • yostj: find shortest path to the evader using a recursive function. move towards the evader until it is one step away. then randomly choose whether or not to stay put, go to the evader's city, or move to one of the neighbors that the pursuer shares with the evader.



game_test

  PURSUERS nortod2anderzjacobr2huj10moves_randomlyfauldapfeffabassej4susseaweinsakarchagertlehurlet2goldmnluongcdupreiharveb2haynepdiamoglawpbeerjkinneeyostjleee10schregjuddr2perezg2manchtcallam3sarbosnever_moves
EVADERS averages 0.4 1.8 1.9 1.9 2.0 2.0 2.1 2.1 2.5 8.6 19.5 19.5 19.5 19.6 20.7 20.8 21.1 21.8 25.6 25.6 25.7 25.8 25.9 28.9 30.3 30.3 30.3 30.3 30.4 30.4 60.2
lih8 64.6 0.0 1.4 3.4 2.7 2.0 2.4 0.9 1.1 3.0 25.6 1.6 0.8 0.7 0.6 0.5 5.4 9.2 0.0 4.9 2.2 2.7 3.1 2.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
sarbos 64.6 0.0 1.9 2.5 1.4 2.3 2.3 1.9 2.3 3.0 22.1 0.8 1.2 1.2 0.8 2.8 4.1 5.6 0.0 3.2 4.3 4.6 4.0 3.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
martij24 64.5 0.0 2.3 0.6 2.3 1.4 3.0 0.7 3.0 3.0 17.1 0.7 1.5 1.3 2.1 4.4 2.1 6.5 0.0 2.7 2.8 2.9 3.0 3.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
callam3 64.5 0.0 3.2 2.0 2.8 2.0 3.0 2.6 1.5 3.0 11.6 0.9 1.0 1.3 1.2 2.3 2.1 8.6 0.0 2.3 2.4 3.4 2.6 4.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
duprei 64.4 0.0 1.4 1.1 2.0 1.6 1.4 2.0 1.9 3.0 9.1 2.2 3.6 1.8 2.3 6.1 2.0 7.0 0.0 2.0 2.7 1.8 2.2 1.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
weilg 64.4 0.0 2.0 2.3 2.6 1.9 1.5 1.6 3.4 3.0 10.3 1.3 0.6 0.9 1.4 1.1 2.5 5.6 0.0 3.0 2.3 3.6 2.6 4.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
perezg2 64.4 0.0 0.7 2.8 1.8 3.8 2.7 0.7 3.8 3.0 13.7 0.4 1.0 0.4 1.3 0.7 4.0 4.0 0.0 2.4 2.6 2.3 2.5 3.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
leiy3 64.3 0.0 1.7 0.8 4.7 1.7 2.2 2.6 1.8 3.0 19.3 1.2 1.2 1.5 0.6 100.0 100.0 100.0 2.0 0.9 0.3 1.1 2.5 2.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
celic 64.3 0.0 0.8 0.5 2.6 2.3 0.6 1.5 2.3 3.0 23.2 1.3 2.0 1.4 1.5 100.0 100.0 100.0 2.0 0.7 1.0 1.2 0.8 2.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
lehnem2 64.3 0.0 2.0 2.0 4.0 1.2 1.9 3.6 2.9 3.0 16.3 0.5 0.9 1.1 1.1 100.0 100.0 100.0 2.0 0.9 0.9 1.1 1.0 4.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
haynep 64.2 0.0 1.0 2.3 0.9 3.1 2.3 2.4 2.3 3.0 17.5 1.1 0.7 0.8 0.8 100.0 100.0 100.0 2.0 1.1 0.6 1.5 1.1 2.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
harveb2 64.2 0.0 1.6 3.4 1.8 3.2 1.2 2.4 1.9 3.0 14.9 0.6 0.8 1.4 1.1 100.0 100.0 100.0 2.0 1.5 0.4 1.1 1.4 2.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
lawp 64.2 0.0 1.0 4.2 3.8 1.3 3.0 2.1 2.0 3.0 12.4 0.8 0.6 2.4 0.8 100.0 100.0 100.0 2.0 0.4 1.3 0.6 0.7 3.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
jacobr2 64.2 0.0 2.5 1.0 1.2 2.3 1.4 4.5 1.7 3.0 14.8 0.4 1.3 1.2 1.0 100.0 100.0 100.0 2.0 1.2 1.3 1.2 1.6 1.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
yostj 64.2 0.0 2.2 1.4 1.5 1.8 1.0 0.8 2.9 3.0 17.7 1.0 0.5 0.9 1.4 100.0 100.0 100.0 2.0 0.1 1.2 2.0 1.1 1.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
mancht 64.2 0.0 2.7 2.8 3.2 1.8 0.9 1.6 2.7 3.0 11.8 0.5 0.5 2.5 0.8 100.0 100.0 100.0 2.0 0.8 0.4 1.0 0.7 1.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
dimitd 64.2 0.0 1.4 1.4 1.7 2.0 2.2 2.1 2.4 3.0 11.5 1.5 1.3 0.7 1.8 100.0 100.0 100.0 2.0 1.2 1.1 0.8 0.5 2.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
weissj3 64.2 0.0 1.8 2.2 0.8 1.7 2.8 1.9 1.8 3.0 13.0 0.6 0.8 1.5 0.7 100.0 100.0 100.0 2.0 0.8 0.5 1.7 1.0 2.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
nortod2 64.2 0.0 1.8 3.2 1.0 2.0 1.3 1.3 3.1 3.0 10.4 0.7 1.1 0.6 1.1 100.0 100.0 100.0 2.0 1.4 0.5 1.3 1.4 2.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
sardar 64.1 0.0 2.6 1.6 1.0 1.8 1.6 3.3 2.0 3.0 10.8 0.7 0.4 0.2 1.4 100.0 100.0 100.0 2.0 0.8 1.3 1.0 1.5 0.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
radocm 62.9 0.0 2.9 1.5 3.3 1.0 2.2 2.1 2.7 3.0 9.5 1.1 0.7 1.3 2.0 100.0   100.0 2.0 1.5 1.0 0.7 1.2 1.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 0.0
schreg 60.3 0.0 1.5 4.8 1.2 3.4 2.3 2.1 3.2 3.0 9.1 1.3 1.8 1.7 1.2   100.0 100.0 2.0 0.6 0.4 0.7 0.8 1.7 100.0   100.0 100.0 100.0 100.0 100.0 0.0
champl2 59.4 0.0 1.9 3.9 2.8 1.6 1.7 2.2 1.5 4.0 26.6 1.5 1.0 1.1 0.8 1.0 1.1 0.9 0.0 100.0 100.0 100.0 100.0 100.0 1.0 2.0 2.0 2.0 2.0 2.0 2.0 100.0
biernp 59.4 0.0 1.9 2.0 4.4 2.0 1.7 4.7 3.8 4.0 20.5 0.9 1.7 1.3 1.3 1.2 1.0 1.0 0.0 100.0 100.0 100.0 100.0 100.0 1.0 2.0 2.0 2.0 2.0 2.0 2.0 100.0
pfeffa 59.3 0.0 1.3 1.5 2.8 1.5 3.1 2.0 1.9 4.0 18.7 2.1 1.3 0.7 0.8 2.2 1.5 1.5 0.0 100.0 100.0 100.0 100.0 100.0 1.0 2.0 2.0 2.0 2.0 2.0 2.0 100.0
metrom 59.2 0.0 1.7 1.1 2.4 1.9 1.7 1.4 1.4 4.0 20.2 1.6 1.0 0.4 0.7 1.3 2.3 1.6 0.0 100.0 100.0 100.0 100.0 100.0 1.0 2.0 2.0 2.0 2.0 2.0 2.0 100.0
lij17 59.2 0.0 1.1 2.0 1.7 2.4 2.5 2.9 2.7 4.0 15.4 1.7 0.8 0.7 0.9 0.9 1.5 1.2 0.0 100.0 100.0 100.0 100.0 100.0 1.0 2.0 2.0 2.0 2.0 2.0 2.0 100.0
stammn 59.2 0.0 1.9 2.0 2.2 0.8 2.6 3.1 2.2 4.0 15.3 1.5 1.4 0.6 0.5 1.2 0.6 1.7 0.0 100.0 100.0 100.0 100.0 100.0 1.0 2.0 2.0 2.0 2.0 2.0 2.0 100.0
juddr2 59.2 0.0 3.1 1.4 2.2 1.0 1.6 2.3 1.7 4.0 16.9 0.3 1.1 1.9 0.8 0.4 1.0 1.2 0.0 100.0 100.0 100.0 100.0 100.0 1.0 2.0 2.0 2.0 2.0 2.0 2.0 100.0
weinsa 59.2 0.0 1.6 1.7 3.3 3.4 3.8 1.9 1.3 4.0 10.7 1.2 1.7 0.9 0.7 1.2 1.4 2.0 0.0 100.0 100.0 100.0 100.0 100.0 1.0 2.0 2.0 2.0 2.0 2.0 2.0 100.0
never_moves 23.7 0.0 1.7 1.6 2.0 2.5 2.3 2.2 2.2 0.0 0.0 100.0 100.0 100.0 100.0 1.4 1.2 0.6 100.0 0.4 1.1 1.5 0.7 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 100.0
moves_randomly 2.0 1.2 1.3 0.9 1.0 2.8 1.8 2.4 2.1 1.3 2.0 1.0 2.0 0.6 1.7 2.0 2.2 0.8 1.5 1.9 2.7 2.7 3.9 1.7 0.8 1.5 1.6 1.6 1.7 2.1 2.6 2.7



square

  PURSUERS susseahuj10kinneejacobr2bassej4fauldamoves_randomlyweinsanortod2anderzlawpdiamogpfeffayostjhurlet2wux9goldmngertlejaffes2wattepchampl2freitjdupreiharveb2liuvhayneprosadooranssluongclehnem2never_moves
EVADERS averages 31.6 31.7 32.7 33.5 33.7 33.8 33.8 34.6 34.6 35.0 35.0 35.0 35.1 35.1 41.2 41.2 41.3 41.9 42.5 42.6 42.7 42.8 43.4 43.4 45.8 45.8 45.9 45.9 45.9 46.0 81.1
anderz100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
bassej4100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
bradlm4100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
champl2100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
clarkb7100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
diamog100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
gulata2100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
hwangk2100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
juddr2100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
karcha100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lawp100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lih8100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
pfeffa100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
rosado100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
scheme100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
sheedb100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
stammn100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
sussea100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
wattep100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
yostj100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
haynep 98.7 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
radocm 98.7 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0
gertle 97.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 2.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 4.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
liuv 90.9 100.0       100.0   100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0
freitj 87.0 100.0       100.0   100.0 100.0   100.0   100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0
leiy3 80.5 4.0 2.9 2.8 8.8 5.9 13.6 5.6 17.7 100.0 4.9 3.8 4.9 4.5 5.7 1.8 6.2 4.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
duprei 78.0 5.0 3.4 6.0 6.8 5.3 7.4 11.7 33.3 100.0 2.2 1.6 3.2 2.3 2.1 2.8 2.2 5.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0
mancht 77.3 4.0 2.3 2.7 2.9 4.0 3.3 4.0 12.4 100.0 2.0 2.8 2.5 1.7 2.4 1.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0
nortod2 76.7 5.0 3.8 4.1 11.3 11.1 10.2 7.7 23.8 1.0 2.7 3.8 3.0 3.5 2.1 2.4 3.0 2.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0
weissj3 76.6 5.0 3.5 3.9 10.6 11.2 5.3 8.6 23.4 1.0 2.5 2.3 2.9 2.5 3.1 2.2 1.8 3.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0
never_moves 41.3 1.0 1.9 2.2 2.9 3.1 6.1 5.3 1.6 1.0 2.3 2.0 1.6 1.9 1.6 100.0 100.0 100.0 3.4 1.0 1.0 1.0 1.0 2.4 6.0 100.0 100.0 1.0 1.0 1.0 1.0 100.0
moves_randomly 2.9 1.6 1.6 1.2 1.5 4.0 2.6 1.2 1.9 1.9 2.6 2.1 1.4 1.8 2.4 3.4 2.3 1.8 3.6 3.6 0.5 1.5 1.6 2.8 3.6 1.3 3.4 2.3 2.3 2.0 3.3 5.6



line

  PURSUERS pfeffayostjlawpanderzdiamognortod2huj10metromweinsasusseakinneehaynephurlet2fauldasheedbchampl2jacobr2freitjlehnem2moves_randomlybassej4higlecradocmweilggulata2meerdbradlm4walkeb6nevinlwattepnever_moves
EVADERS averages 6.7 6.8 7.0 7.1 7.1 8.4 11.3 14.2 18.9 22.1 33.0 39.2 39.8 44.7 45.7 45.7 46.5 46.6 46.9 46.9 47.4 49.2 49.3 49.3 49.3 49.3 49.3 49.4 49.4 49.4 89.9
yostj 85.8 16.9 17.5 14.3 15.3 22.4 5.0 21.3 9.4 62.5 100.0 64.5 30.0 35.7 48.5 100.0 100.0 88.3 100.0 100.0 77.6 87.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
haynep 85.5 13.3 15.3 19.3 17.8 20.7 5.0 21.6 14.4 70.9 100.0 43.1 24.5 39.2 50.4 100.0 100.0 79.0 100.0 100.0 76.3 85.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
sussea 85.5 13.0 5.8 9.0 16.2 16.2 5.0 16.2 15.4 78.2 100.0 72.9 39.5 26.0 53.4 100.0 100.0 81.8 100.0 100.0 74.2 77.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
diamog 85.2 16.6 19.2 21.0 20.8 16.5 5.0 16.1 11.6 62.4 100.0 50.6 30.4 27.0 44.1 100.0 100.0 78.6 100.0 100.0 85.0 72.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
clarkb7 85.2 9.1 24.9 8.4 27.9 13.5 5.0 24.4 13.9 54.8 100.0 43.4 28.5 30.2 60.3 100.0 100.0 91.0 100.0 100.0 64.3 66.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
pfeffa 85.0 11.8 10.3 17.9 9.5 22.3 5.0 21.8 7.1 66.8 100.0 48.0 20.9 30.1 52.8 100.0 100.0 82.4 100.0 100.0 92.0 79.7 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
mancht 82.3 5.7 5.0 5.3 5.8 4.3 100.0 7.6 100.0 19.4 7.0 24.3 29.6 28.0 29.9 100.0 100.0 31.1 100.0 100.0 29.6 39.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
liuv 82.1 10.6 12.1 17.8 21.0 17.0 5.0 12.4 10.0 64.3 100.0 73.9 16.4 17.8 39.0 100.0 100.0 81.4 100.0 100.0 78.3 48.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
jacobr2 82.0 5.3 5.8 5.9 7.4 6.3 5.0 13.7 7.0 13.5 8.0 32.6 37.4 46.2 49.7 100.0 100.0 64.9 100.0 100.0 59.6 58.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lawp 81.6 13.0 12.2 12.2 13.2 19.6 5.0 9.7 7.8 71.7 100.0 31.7 9.4 8.2 50.3 100.0 100.0 68.9 100.0 100.0 74.6 76.7 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
champl2 81.6 20.1 12.9 18.8 10.5 10.9 5.0 18.5 11.6 61.8 90.5 49.5 16.6 19.1 42.3 100.0 100.0 77.3 100.0 100.0 64.0 72.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
leiy3 81.5 5.7 5.7 5.4 5.7 5.4 4.0 6.2 100.0 16.7 4.0 33.9 16.4 22.0 28.0 100.0 100.0 42.7 100.0 100.0 53.3 53.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lehnem2 81.5 7.6 8.7 9.7 7.7 7.3 4.0 15.4 12.0 34.6 12.0 37.5 16.1 31.7 44.9 100.0 100.0 52.5 100.0 100.0 44.3 46.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
dimitd 81.4 4.6 4.6 4.8 5.5 4.5 4.0 13.4 100.0 11.7 7.0 29.9 23.7 31.8 25.2 100.0 100.0 41.3 100.0 100.0 39.9 38.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lij17 81.2 8.0 10.9 6.1 7.8 5.0 5.0 19.6 8.5 36.2 100.0 30.9 23.1 24.3 42.2 100.0 100.0 73.1 100.0 100.0 76.2 46.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
sardar 81.2 5.2 5.8 5.6 4.5 5.3 4.0 7.7 100.0 19.7 7.0 27.7 21.0 29.3 30.5 100.0 100.0 41.4 100.0 100.0 38.3 35.7 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lih8 80.5 9.7 15.4 20.7 13.9 14.6 5.0 14.7 5.7 67.6 100.0 57.3 8.4 9.8 22.9 100.0 100.0 59.5 100.0 100.0 83.5 64.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
eastlk 78.8 6.4 6.4 7.3 7.8 7.1 5.0 15.6 8.5 30.8 5.0 74.2 27.6 19.4 34.8 35.0 47.0 63.8 45.1 41.0 73.4 56.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
nevinl 78.5 6.4 7.8 7.3 6.4 5.7 5.0 17.9 10.6 16.6 5.0 53.4 24.2 30.0 59.9 22.1 45.8 65.4 64.9 48.5 55.2 38.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
schreg 78.4 5.6 4.0 4.6 4.8 5.7 4.0 11.6 100.0 13.2 7.0 32.3 32.0 33.9 27.0 50.1 43.6 47.2 42.7 34.6 53.1 52.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
higlec 78.4 5.7 6.4 7.8 5.7 7.1 5.0 11.7 7.1 21.7 5.0 43.0 28.8 37.3 36.3 61.7 47.6 53.8 45.6 51.9 52.8 50.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
walkeb6 77.9 8.5 5.7 7.3 5.7 6.4 5.0 14.0 7.1 24.7 5.0 42.7 29.8 21.8 39.1 47.7 55.2 67.5 62.4 43.1 48.2 40.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
weinsa 77.6 6.4 6.4 7.1 7.1 5.0 5.0 12.1 12.7 14.7 5.0 43.8 23.2 19.6 41.7 39.0 28.9 37.3 56.2 38.4 56.4 65.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
radocm 77.6 17.3 16.0 16.1 8.6 14.7 5.0 11.0 12.4 60.2 81.0 53.0 13.8 19.4   100.0 100.0 21.0 100.0 100.0 66.0 68.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
callam3 77.3 5.4 5.0 5.2 5.4 5.8 5.0 10.8 9.2 10.8 5.0 33.2 32.0 18.0 47.9 54.6 46.1 55.7 32.1 53.6 48.6 46.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
baern2 76.6 5.0 5.0 5.0 5.0 5.7 5.0 6.4 9.2 34.7 100.0 50.1 7.2 6.6 39.0 43.8 53.7 53.5 53.3 72.1 52.6 77.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
weissj3 76.4 7.1 7.1 4.6 6.3 7.6 5.1 6.7 20.2 31.9 12.4 36.3 8.4 10.1 32.8 100.0 100.0 25.6 100.0 100.0 40.3 36.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
oranss 75.6 5.0 6.4 5.7 5.0 5.7 5.0 6.9 7.1 9.7 100.0 43.8 7.2 7.8 52.0 43.8 44.2 59.6 52.7 43.4 62.0 31.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
nortod2 73.8 5.6 4.1 6.3 9.2 3.9 2.0 5.1 6.4 11.1 7.0 22.5 5.9 4.8 12.0 100.0 100.0 13.7 100.0 100.0 14.2 24.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
luongc 72.3 5.9 5.7 5.4 5.0 5.2 5.0 9.1 7.1 22.7 14.5 33.0 7.8 6.8   21.1 40.3 47.8 47.2 36.1 47.6 56.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
never_moves 56.9 5.0 4.7 5.5 5.2 4.5 4.0 11.0 4.0 4.8 4.0 22.7 100.0 100.0 55.3 18.1 25.4 38.2 22.7 18.4 40.6 30.8 4.0 4.0 4.0 4.0 4.0 4.0 4.0 4.0 4.0 100.0
moves_randomly 24.6 4.3 5.1 4.6 4.6 4.9 5.7 8.9 6.1 4.9 3.8 15.3 13.7 16.1 23.5 8.7 15.6 40.1 14.2 11.7 25.3 27.6 4.5 3.7 6.1 4.8 5.4 4.5 3.2 4.4 4.9 63.6



jacobr2 raymond_test

  PURSUERS lawpdiamognortod2pfeffahuj10yostjanderzweinsakinneeoransshiglecmeerdwatteplih8weilgbradlm4susseanevinlschemewalkeb6clarkb7metrombaern2rosadoluongcgulata2hanovnsarbosperezg2fauldamoves_randomlynever_moves
EVADERS averages 3.2 3.2 4.5 7.9 8.6 8.7 10.2 11.3 13.8 15.4 15.6 16.0 16.0 16.1 16.2 16.2 16.3 16.3 16.4 16.4 16.4 16.4 16.5 16.5 16.9 16.9 17.0 18.4 18.5 18.5 19.8 75.5
liuv 83.9 5.8 1.0 1.0 70.3 70.3 30.7 70.3 82.3 42.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 54.8 48.8 100.0
haynep 83.5 12.8 1.0 1.0 80.2 30.7 50.5 40.6 63.6 32.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 58.5 61.4 100.0
lawp 83.4 5.1 1.0 1.0 50.5 60.4 50.5 40.6 94.8 53.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 23.9 49.6 100.0
radocm 82.4 4.5 1.0 1.0 11.3 30.7 70.3 50.5 85.5 7.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 42.1 57.4 100.0
leiy3 81.8 2.8 1.0 1.0 60.7 60.4 50.5 70.3 53.3 13.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 11.7 25.5 100.0
nortod2 81.2 10.6 1.0 1.0 31.5 70.3 50.5 50.5 26.8 8.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 24.1 22.6 100.0
yostj 80.0 3.3 1.0 1.0 2.4 30.7 60.4 40.6 56.2 14.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 12.8 13.9 100.0
weissj3 78.3 5.0 1.0 1.0 40.6 1.0 1.0   15.0 13.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 19.2 6.7 100.0
lehnem2 78.3 2.7 1.0 1.0 3.0 4.5 3.1 4.6 20.2 6.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 22.7 14.3 100.0
anderz 56.7 2.2 1.0 1.0 50.5 60.4 70.3 50.5 22.9 5.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 11.4 19.0 2.0
baern2 51.2 3.0 1.0 20.8 20.8 20.8 30.7 30.7 24.4 21.4 12.8 50.5 50.5 40.6 18.7 50.5 40.6 60.4 60.4 50.5 60.4 50.5 50.5 40.6 23.4 70.3 60.4 56.5 51.0 60.8 11.5 23.9 100.0
hwangk2 43.3 2.5 20.8 30.8 11.0 31.1 20.9 30.8 18.8 28.3 4.6 20.8 30.7 50.5 5.9 30.7 20.8 40.6 20.8 50.5 40.6 70.3 40.6 11.7 5.1 40.6 50.5 4.1 40.9 21.0 16.6 32.9 100.0
qiuz 42.5 1.6 11.2 20.9 1.2 21.1 11.0 20.8 5.2 37.7 9.3 1.0 50.5 20.8 8.1 30.7 50.5 20.8 30.7 50.5 40.6 20.8 40.6 31.0 6.0 40.6 50.5 3.3 50.7 50.7 31.9 25.3 100.0
rosado 41.4 6.1 1.3 30.7 11.0 1.4 40.7 20.9 22.9 29.5 4.8 30.7 1.0 30.7 3.8 20.8 20.8 20.8 30.7 10.9 30.7 10.9 30.7 22.1 12.5 60.4 40.6 16.2 40.9 31.0 35.4 38.7 100.0
luongc 37.1 2.0 1.0 2.0 1.0 1.4 1.7 2.0 3.1 15.2 5.2 1.3 3.6 4.0 9.9 3.3 3.5 2.4 2.3 1.8 2.0 3.0 2.9 3.5 24.3 3.2 5.1 21.0 80.4 80.4 20.8 15.4 100.0
bassej4 34.8 6.6 1.0 1.0 2.1 3.6 1.8 4.2 11.1 8.8 5.3 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 7.1 3.0 3.0 3.0 3.0 3.0 3.0 14.7 10.7 100.0
sardar 34.2 1.3 1.0 1.0 1.9 1.5 1.7 1.5 2.8 5.7 8.1 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 5.9 2.0 2.0 2.0 2.0 3.0 3.0 9.1 4.6 100.0
lih8 33.6 1.0 1.0 1.0 1.0 1.0 1.0 1.0 26.4 41.8 4.3 1.0 1.0 1.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 21.3 2.0 1.0 1.0 2.0 2.0 2.0 50.4 41.7 100.0
wux9 31.7 3.8 1.0 1.0 1.7 2.5 2.4 1.7 8.3 1.9 8.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 5.1 3.0 3.0 3.0 3.0 3.0 3.0 6.3 21.0 100.0
duprei 31.6 4.4 1.0 2.0 2.8 2.7 2.7 2.0 5.4 5.9 10.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 4.4 3.0 3.0 3.0 3.0 3.0 3.0 4.9 11.3 100.0
mancht 31.5 2.2 1.0 2.0 2.0 1.7 1.7 1.6 3.3 5.5 4.3 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 4.5 2.0 2.0 2.0 2.0 3.0 3.0 12.5 12.7 100.0
sussea 31.5 1.0 1.0 1.0 1.0 1.0 1.0 1.0 5.7 40.0 1.8 1.0 1.0 1.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 3.4 2.0 1.0 1.0 2.0 2.0 2.0 39.2 24.5 100.0
wattep 31.1 2.0 2.2 1.0 1.6 1.5 1.8 1.2 1.3 13.7 1.9 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 3.0 1.0 1.0 1.0 1.0 2.0 2.0 27.0 30.5 100.0
dimitd 31.0 2.7 1.0 1.0 2.3 1.8 1.4 1.5 3.1 4.0 8.6 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 4.7 2.0 2.0 2.0 2.0 3.0 3.0 8.6 5.1 100.0
gulata2 30.5 1.5 2.3 1.0 1.4 2.1 1.6 1.3 1.6 20.6 1.3 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.2 1.0 1.0 1.0 1.0 1.0 1.0 24.6 54.7 100.0
champl2 30.3 1.0 1.0 1.0 1.0 1.0 1.0 1.0 9.0 29.9 2.7 1.0 1.0 1.0 1.7 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.5 1.4 1.0 1.0 1.6 1.7 1.4 29.1 42.6 100.0
sheedb 30.2 1.3 2.0 1.0 2.0 1.5 2.0 2.0 2.0 7.2 1.8 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.9 1.0 1.0 1.0 1.0 2.0 2.0 24.0 13.9 100.0
clarkb7 30.1 1.0 1.0 1.0 1.0 1.0 1.0 1.0 36.4 35.1 5.2 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.6 1.0 1.0 1.0 1.0 1.0 1.0 48.5 41.6 100.0
hurlet2 29.6 1.3 2.2 1.0 1.4 1.4 1.4 1.5 1.1 7.8 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 2.0 2.0 16.2 38.1 100.0
freitj 29.5 1.6 2.1 1.0 1.6 1.6 1.7 1.6 1.5 22.2 1.7 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.6 1.0 1.0 1.0 1.0 1.0 1.0 23.8 4.0 100.0
never_moves 29.3 1.9 2.1 1.0 1.9 1.6 1.3 1.8 1.0 6.8 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 2.0 2.0 4.9 14.8 100.0
moves_randomly 4.5 0.7 0.8 1.7 1.5 1.9 0.5 2.1 1.0 5.9 1.6 1.2 1.0 1.4 1.1 0.6 0.7 0.8 1.3 0.6 0.7 1.3 1.4 0.6 2.4 1.0 0.8 0.4 4.5 7.6 5.5 4.2 9.9



champl2 binarytree

  PURSUERS susseaanderzyostjdiamoglawphuj10pfeffakinneesheedbweinsalehnem2freitjchampl2nortod2qiuzmoves_randomlymetromlouy2ramseggallan2fauldahaynephurlet2wux9gertlebaern2jaffes2oransswestemdupreinever_moves
EVADERS averages 6.6 6.6 6.6 6.6 6.6 6.6 6.6 7.1 7.3 7.3 7.4 7.4 7.4 10.3 11.6 11.7 16.5 21.8 22.1 22.2 32.4 33.6 34.0 35.9 37.3 45.8 47.1 47.1 47.1 48.0 90.3
haynep 67.8 2.0 2.0 2.0 2.0 2.0 2.0 2.0 4.0 2.8 4.9 3.5 3.0 13.8 2.0 6.6 12.3 2.0 43.2 55.1 56.1 3.8 2.0 2.1 6.8 30.5 100.0 100.0 100.0 100.0 100.0 100.0
pfeffa 67.7 2.0 2.0 2.0 2.0 2.0 2.0 2.0 7.5 3.9 4.6 13.6 9.5 2.9 2.0 6.4 21.4 2.0 33.4 11.3 19.9 4.5 2.0 2.1 10.6 41.4 100.0 100.0 100.0 100.0 100.0 100.0
nortod2 67.5 1.0 1.0 1.0 1.0 1.0 1.3 1.0 3.4 2.0 3.5 11.8 2.7 4.7 1.0 8.6 5.2 100.0 44.7 55.2 49.7 4.2 2.8 3.0 2.6 25.7 100.0 100.0 100.0 100.0 100.0 100.0
lehnem2 67.3 2.0 2.0 2.0 2.6 2.0 2.0 2.0 4.0 4.5 3.2 4.6 4.4 4.1 2.0 7.3 5.7 2.0 16.0 48.3 52.7 6.5 2.4 2.4 5.6 42.6 100.0 100.0 100.0 100.0 100.0 100.0
leiy3 67.1 1.0 1.0 1.0 1.0 1.0 1.0 1.1 2.4 2.5 2.6 2.0 2.0 2.0 1.0 5.1 4.1 100.0 48.8 43.8 67.4 5.2 2.6 2.8 1.0 28.0 100.0 100.0 100.0 100.0 100.0 100.0
jacobr2 66.8 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.6 14.1 3.6 2.6 7.4 2.7 2.0 4.7 6.1 2.0 36.6 20.3 27.5 7.9 2.1 2.0 3.2 4.9 100.0 100.0 100.0 100.0 100.0 100.0
clarkb7 66.8 2.0 2.0 2.0 2.0 2.0 2.0 2.0 4.0 3.6 3.2 5.1 5.8 5.2 2.0 6.3 8.0 2.0 5.6 6.5 8.9 14.6 3.1 3.2 5.4 68.5 100.0 100.0 100.0 100.0 100.0 100.0
sardar 66.7 2.0 2.0 2.0 2.0 2.0 2.0 2.0 4.8 3.9 3.8 6.2 2.6 2.9 2.0 5.7 4.8 2.0 43.1 9.2 26.2 4.0 2.1 2.1 4.2 9.6 100.0 100.0 100.0 100.0 100.0 100.0
liuv 66.6 2.0 2.0 2.0 2.2 2.0 2.0 2.0 2.9 3.0 3.2 2.9 4.2 5.4 2.0 6.8 13.4 2.0 40.5 62.9 39.7 4.6 2.2 2.2 4.0 35.9 100.0 100.0 100.0 100.0 100.0 100.0
diamog 66.1 2.0 2.1 2.0 2.0 2.0 2.0 2.2 2.7 3.0 3.2 2.2 2.0 2.0 2.0 9.2 7.3 2.0 52.2 87.1 59.6 2.7 3.0 3.1 4.8 38.3 100.0 100.0 100.0 100.0 100.0 100.0
sussea 66.1 2.0 2.0 2.0 2.0 2.0 2.0 2.0 4.0 5.5 3.0 2.0 11.2 4.7 2.0 6.6 5.9 2.0 34.9 29.8 54.4 7.3 2.1 2.0 5.4 34.7 100.0 100.0 100.0 100.0 100.0 100.0
lih8 65.7 2.0 2.0 2.0 2.0 2.0 2.0 2.0 3.1 2.0 4.0 2.0 2.0 2.0 2.0 5.7 10.2 2.0 64.9 63.1 53.6 4.6 3.3 3.0 8.2 39.5 100.0 100.0 100.0 100.0 100.0 100.0
yostj 65.5 2.0 2.0 2.0 2.0 2.0 2.0 2.5 4.0 4.9 2.4 2.2 3.9 2.2 2.0 6.0 6.5 2.0 83.4 35.0 51.4 6.4 2.6 2.9 1.0 32.3 100.0 100.0 100.0 100.0 100.0 100.0
mancht 65.3 2.0 2.0 2.0 2.0 2.0 2.0 2.0 4.1 3.1 2.5 2.7 2.6 7.0 100.0 14.9 8.1 2.0 9.6 24.1 12.4 35.0 23.9 25.4 22.0 87.8 41.2 26.6 51.0 23.4 24.6 100.0
eastlk 65.3 2.0 2.0 2.0 2.0 2.0 2.0 2.8 3.2 2.4 4.4 2.0 2.0 2.6 2.0 3.8 8.2 2.0 44.6 84.0 49.9 5.4 2.0 2.0 7.8 12.4 100.0 100.0 100.0 100.0 100.0 100.0
lawp 65.3 2.0 2.0 2.0 2.0 2.0 2.0 2.2 3.7 2.0 2.8 3.2 2.1 3.1 2.0 6.1 15.2 2.0 75.0 54.7 30.4 4.7 3.0 3.0 11.0 42.1 100.0 100.0 100.0 100.0 100.0 100.0
higlec 65.2 2.0 2.0 2.0 2.0 2.0 2.0 2.2 3.0 2.0 3.6 2.0 2.0 4.6 2.0 5.4 7.0 2.0 61.6 56.2 30.2 3.0 2.0 2.0 4.4 18.6 100.0 100.0 100.0 100.0 100.0 100.0
callam3 65.1 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.8 3.6 2.0 2.0 2.0 2.2 2.0 4.2 5.9 2.0 59.0 45.0 58.0 2.6 2.0 2.0 8.0 11.5 100.0 100.0 100.0 100.0 100.0 100.0
schreg 65.1 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.3 1.9 1.2 1.0 1.1 1.0 1.2 1.0 100.0 30.9 21.0 32.2 1.9 1.1 1.0 1.6 1.3 100.0 100.0 100.0 100.0 100.0 100.0
walkeb6 64.9 2.0 2.0 2.0 2.0 2.0 2.0 2.0 3.2 2.0 2.9 11.8 2.2 3.0 2.0 5.6 6.6 2.0 50.0 28.2 61.2 4.0 2.0 2.0 7.4 11.6 100.0 100.0 100.0 100.0 100.0 100.0
nevinl 64.6 2.0 2.0 2.0 2.0 2.0 2.0 2.4 2.4 2.4 3.6 2.2 2.0 2.6 2.0 2.6 6.6 2.0 54.5 45.2 35.8 6.2 2.0 2.0 5.6 18.0 100.0 100.0 100.0 100.0 100.0 100.0
weinsa 64.6 2.0 2.0 2.0 2.0 2.0 2.0 2.2 2.6 2.0 5.6 2.0 2.4 2.0 2.0 7.4 9.6 2.0 21.4 53.0 57.2 3.8 2.0 2.0 6.4 23.6 100.0 100.0 100.0 100.0 100.0 100.0
champl2 64.6 2.0 2.0 2.0 2.0 2.0 2.0 2.0 6.4 2.3 3.6 2.7 2.9 2.8 2.0 6.2 11.0 2.0 50.4 21.5 30.1 3.9 2.5 2.8 9.1 24.0 100.0 100.0 100.0 100.0 100.0 100.0
radocm 64.3 2.0 2.0 2.0 2.0 2.0 2.0 2.2 3.0 12.2 3.1 3.4 2.4 2.6 2.0 11.1 4.5 2.0 17.2 33.3 31.9 5.9 2.9 2.4 9.7 50.4 100.0 100.0 100.0 100.0 100.0 100.0
baern2 64.2 2.0 2.0 2.0 2.0 2.0 2.0 2.0 5.0 5.0 3.8 2.0 2.0 2.0 2.0 3.0 9.0 2.0 74.4 75.2 55.0 3.6 2.0 2.0 8.4 7.0 100.0 100.0 100.0 100.0 100.0 100.0
oranss 63.7 2.0 2.0 2.0 2.0 2.0 2.0 2.2 2.8 2.0 3.8 2.2 2.0 2.0 2.0 7.2 9.9 2.0 52.1 18.7 54.6 4.4 2.0 2.0 7.0 22.4 100.0 100.0 100.0 100.0 100.0 100.0
weilg 63.6 2.0 2.0 2.0 2.0 2.0 2.0 2.4 2.8 2.0 5.2 2.6 2.0 2.0 2.0 3.6 4.8 2.0 39.2 48.6 64.4 3.2 2.0 2.0 4.0 13.2 100.0 100.0 100.0 100.0 100.0 100.0
dimitd 63.6 2.0 2.0 2.0 2.0 2.0 2.0 2.0 3.6 2.1 2.2 3.8 12.1 21.9 2.0 12.3 9.0 2.0 5.3 6.3 4.2 22.5 26.6 26.1 48.4 64.7 51.0 32.0 41.2 31.6 33.2 100.0
wux9 63.6 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.3 1.0 3.7 10.9 1.1 1.0 1.0 1.5 1.6 100.0 20.8 11.1 11.1 1.2 1.3 1.3 1.1 1.1 100.0 100.0 100.0 100.0 100.0 100.0
metrom 53.4 2.0 2.0 2.0 2.0 2.0 2.1 2.1 2.3 2.0 3.0 2.0 1.9 2.0 2.0 2.5 4.7 2.0 13.6 3.6 2.4 4.9 1.9 1.9 3.1 8.1 31.9 3.7 31.5 41.3 8.3 100.0
never_moves 51.7 2.0 2.0 2.1 2.0 2.0 2.0 2.0 3.3 2.1 2.0 2.1 2.0 2.0 2.0 11.9 5.4 2.8 2.8 2.7 2.9 100.0 100.0 100.0 100.0 78.1 2.0 2.6 2.0 2.8 6.2 100.0
moves_randomly 11.4 1.4 1.3 1.5 1.5 1.4 1.4 1.7 2.5 1.7 1.5 1.6 1.1 1.5 1.5 4.3 6.1 1.8 2.2 1.8 2.0 3.5 2.2 3.0 4.2 4.8 3.2 2.5 2.9 3.7 4.2 12.6



ramseg trojan_war

  PURSUERS pfeffalawphuj10anderzyostjdiamognortod2susseametromweinsaoransswalkeb6meerdnevinlwattepbradlm4weilghiglecgulata2baern2hurlet2hayneplehnem2champl2freitjkinneesheedbmoves_randomlybassej4jacobr2never_moves
EVADERS averages 3.9 5.0 5.1 5.3 5.4 6.3 6.5 10.0 11.6 14.3 26.7 27.9 27.9 28.0 28.2 28.3 28.3 28.5 28.5 31.3 32.4 33.3 36.9 37.7 38.1 38.5 38.8 43.8 44.8 45.0 94.6
yostj 83.0 7.4 13.1 8.0 8.0 14.0 7.2 3.0 100.0 14.2 57.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 5.6 5.7 100.0 100.0 100.0 51.0 100.0 46.6 58.3 56.6 100.0
haynep 82.7 7.8 5.4 8.5 8.9 6.9 11.3 3.0 11.0 12.7 39.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 22.9 34.2 100.0 100.0 100.0 66.2 100.0 73.3 74.5 70.2 100.0
mancht 82.3 4.3 4.2 5.0 4.1 3.9 4.4 100.0 6.0 5.0 25.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 38.4 34.0 100.0 100.0 100.0 63.9 100.0 45.0 50.4 49.6 100.0
clarkb7 82.2 10.6 7.4 9.1 10.8 8.0 7.3 3.0 100.0 61.2 57.8 21.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 15.1 15.2 100.0 100.0 100.0 50.0 100.0 66.9 53.2 65.3 100.0
liuv 81.7 7.9 9.4 8.0 7.1 8.8 8.1 3.0 35.3 13.0 68.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 8.9 7.7 100.0 100.0 100.0 73.9 100.0 62.7 66.6 61.2 100.0
pfeffa 81.5 7.4 16.5 6.3 6.7 36.8 46.7 3.0 28.4 14.1 69.2 25.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 38.2 33.4 23.2 100.0 100.0 100.0 66.4 100.0 52.8 54.1 72.2 100.0
lehnem2 81.5 4.3 4.7 6.6 5.0 4.9 4.1 3.0 7.0 61.2 18.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 32.1 19.4 100.0 100.0 100.0 52.2 100.0 42.8 58.9 42.5 100.0
duprei 81.4 4.3 5.1 7.2 4.0 4.3 4.1 100.0 7.0 41.8 15.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 19.1 31.0 100.0 100.0 100.0 54.6 100.0 51.9 54.0 44.5 100.0
dimitd 80.6 4.0 3.5 7.0 4.0 3.7 4.5 3.0 6.0 4.6 8.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 15.5 24.2 100.0 100.0 100.0 71.1 100.0 44.1 44.9 41.3 100.0
diamog 80.6 9.0 25.8 11.8 9.8 33.5 17.5 3.0 13.0 51.5 50.0 7.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 9.4 5.9 7.3 100.0 100.0 100.0 78.4 100.0 76.5 73.4 72.1 100.0
jacobr2 80.3 4.1 3.8 4.8 4.4 3.5 4.8 3.0 6.0 4.8 10.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 24.6 23.0 100.0 100.0 100.0 49.5 100.0 46.1 50.5 43.3 100.0
sardar 80.2 4.6 4.1 6.9 3.9 3.9 3.9 3.0 6.0 5.4 13.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 29.0 17.3 100.0 100.0 100.0 52.6 100.0 43.4 32.4 36.6 100.0
radocm 78.6 11.4 7.3 6.6 13.4 10.9 8.2 3.0 45.6 27.0 55.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 5.7 5.9 100.0 100.0 100.0 17.8 100.0 53.0 74.5 62.5 100.0
lawp 78.5 7.5 12.8 5.6 7.2 10.3 5.5 3.0 20.0 51.5 32.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 4.6 4.2 100.0 100.0 100.0 21.8 100.0 67.7 51.9 83.7 100.0
sussea 78.2 5.4 24.2 6.3 8.1 23.7 28.0 3.0 14.0 41.8 32.5 9.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 8.2 10.0 8.2 100.0 100.0 100.0 87.0 100.0 57.7 40.5 59.2 100.0
lih8 78.0 7.6 10.2 11.3 11.7 12.1 5.2 3.0 100.0 11.8 60.0 9.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 5.2 5.6 100.0 100.0 100.0 23.5 100.0 74.3 83.2 87.4 100.0
wux9 77.6 2.5 3.8 2.9 2.5 2.8 3.7 2.0 5.0 100.0 18.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 3.8 3.6 100.0 100.0 100.0 14.2 100.0 26.7 30.5 45.5 100.0
champl2 76.4 9.0 26.8 9.8 6.7 19.5 17.9 3.0 25.1 33.4 48.6 9.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 74.9 4.3 5.9 100.0 100.0 100.0 64.3 100.0 70.4 76.7 58.2 100.0
nortod2 76.4 6.5 6.8 6.6 6.2 7.8 6.9 3.0 11.0 80.6 29.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 4.8 4.4 100.0 100.0 100.0 10.6 100.0 24.2 18.4 18.6 100.0
leiy3 76.2 5.5 7.0 5.7 4.8 4.2 5.2 2.0 7.0 100.0 33.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 3.2 2.4 100.0 100.0 100.0 8.8 100.0 23.8 17.2 12.3 100.0
bassej4 70.8 5.4 22.8 6.4 8.9 13.3 32.2 4.5 5.4 32.2 27.0 24.3 22.4 32.1 32.1 51.5 51.5 61.2 70.9 70.9 50.4 24.6 23.7 44.6 64.4 29.9 70.0 79.8 60.5 60.6 56.8 100.0
never_moves 63.1 4.2 3.8 4.9 3.8 3.9 4.5 3.0 3.0 3.9 3.9 26.7 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 12.0 100.0 100.0 25.5 21.5 19.0 60.1 29.0 68.1 36.5 67.4 100.0
scheme 63.1 5.2 4.4 5.7 3.9 3.7 3.4 3.0 3.0 4.1 4.1 15.2 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 21.2 100.0 100.0 22.2 21.6 21.7 58.2 18.8 51.1 58.5 69.6 100.0
bradlm4 62.8 4.8 3.9 5.8 3.8 4.0 4.5 3.0 3.0 3.9 3.8 15.2 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 22.8 100.0 100.0 37.4 23.2 21.0 57.0 45.8 73.0 60.6 64.8 100.0
zemskm 62.8 4.2 4.5 5.0 4.0 4.4 3.8 3.0 3.0 4.1 4.8 7.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 8.8 100.0 100.0 24.1 29.2 35.7 48.4 26.4 64.3 58.4 40.7 100.0
leee10 62.8 3.4 3.9 6.7 4.4 3.5 3.3 3.0 3.0 4.3 3.8 27.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 16.1 100.0 100.0 32.6 23.1 33.8 43.6 19.9 54.9 43.7 65.7 100.0
stammn 62.8 3.7 3.7 5.5 4.5 3.7 4.0 3.0 3.0 3.6 3.0 15.6 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 19.1 100.0 100.0 13.1 20.1 22.5 56.8 24.1 79.9 56.4 49.1 100.0
gallan2 62.6 4.9 3.7 7.1 5.3 4.3 3.5 3.0 3.0 4.3 3.8 18.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 12.1 100.0 100.0 22.8 28.7 34.5 41.0 29.4 67.6 46.5 54.5 100.0
martij22 62.5 4.5 4.4 4.7 3.5 4.2 3.4 3.0 3.0 4.0 4.4 17.1 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 21.8 100.0 100.0 23.5 26.6 19.8 61.3 19.5 62.1 63.9 36.6 100.0
gertle 62.4 3.4 3.7 6.8 3.4 4.4 3.5 25.6 3.0 3.9 4.3 20.1 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 16.6 100.0 100.0 22.6 20.8 39.5 56.0 23.5 60.7 43.3 57.9 100.0
moves_randomly 12.8 2.8 2.9 2.6 2.9 2.9 3.7 2.7 2.4 3.0 3.9 4.2 3.8 2.1 3.3 3.9 3.6 2.4 2.0 3.5 4.8 6.1 5.7 6.0 5.4 6.6 6.3 5.8 13.8 9.9 10.5 20.4



diamog my_test

  PURSUERS lawphuj10kinneeluongcnortod2susseaweinsaanderzschemepfeffadupreischregfauldamoves_randomlyqiuzyostjdiamogliuvbaern2radocmhurlet2harveb2oranssperezg2rosadojuddr2manchtsarboshanovngoldmnnever_moves
EVADERS averages 5.3 5.5 5.5 5.7 6.3 6.3 6.5 6.7 6.8 6.8 7.3 7.5 8.6 9.7 11.4 11.5 14.8 15.2 17.9 18.7 21.2 22.2 34.1 35.0 35.1 35.7 36.3 36.5 37.1 37.1 91.9
higlec 76.1 9.1 2.4 8.8 2.6 2.0 7.0 13.3 2.3 2.0 2.4 9.6 14.6 4.5 7.8 11.6 100.0 100.0 3.0 100.0 100.0 2.5 5.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 51.6 100.0
stammn 75.8 11.5 3.1 8.5 2.5 2.0 7.0 8.5 3.1 5.0 3.2 7.0 19.8 5.5 12.2 22.8 100.0 100.0 4.0 100.0 100.0 3.2 3.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 4.7 100.0
diamog 73.2 6.6 3.4 6.9 2.8 2.0 7.0 12.9 3.0 3.0 3.5 13.2 6.7 6.8 8.5 16.0 100.0 100.0 3.0 4.0 100.0 3.2 9.3 2.0 100.0 100.0 100.0 100.0 100.0 100.0 10.3 100.0
clarkb7 71.9 7.8 3.3 7.7 3.7 2.0 7.0 26.2 3.5 4.0 3.5 5.0 9.8 8.5 12.0 25.8 12.4 61.9 3.0 2.0 100.0 3.5 11.1 2.0 100.0 100.0 100.0 100.0 100.0 100.0 9.7 100.0
goldmn 71.7 5.9 2.9 8.3 2.0 2.0 7.0 8.6 2.8 4.0 2.4 10.5 9.8 7.3 10.8 16.1 96.4 100.0 2.0 2.0 2.0 2.3 8.7 2.0 100.0 100.0 100.0 100.0 100.0 100.0 8.0 100.0
callam3 71.3 4.0 2.5 4.2 2.9 2.0 4.0 7.6 2.3 100.0 2.5 9.1 8.8 6.6 11.4 9.8 3.2 3.3 2.0 2.0 2.0 2.2 13.8 2.0 100.0 100.0 100.0 100.0 100.0 100.0 78.9 100.0
juddr2 70.9 8.0 2.2 6.9 2.8 2.0 7.0 10.1 2.7 3.0 2.8 8.5 7.1 11.4 13.1 25.4 20.8 62.0 2.0 2.0 2.0 2.0 7.6 2.0 100.0 100.0 100.0 100.0 100.0 100.0 49.3 100.0
lij17 70.8 5.6 3.5 9.5 3.3 2.0 7.0 7.2 3.2 3.0 3.3 9.5 5.9 8.7 12.3 12.0 20.0 100.0 3.0 5.0 100.0 3.3 4.7 100.0 100.0 100.0 100.0 100.0 100.0 100.0 7.5 100.0
sussea 70.1 7.3 2.4 8.6 2.1 2.0 7.0 8.0 2.5 3.0 2.2 12.1 5.2 9.7 19.8 15.1 6.3 10.3 2.0 2.0 2.0 2.2 8.9 2.0 100.0 100.0 100.0 100.0 100.0 100.0 52.1 100.0
champl2 70.0 6.7 2.9 6.9 2.7 2.0 10.3 10.3 3.0 3.6 2.6 7.2 6.2 6.9 10.3 13.5 6.5 7.1 2.9 5.3 51.5 2.3 7.7 3.4 100.0 100.0 100.0 100.0 100.0 100.0 6.0 100.0
eastlk 69.9 7.1 2.6 7.9 2.1 2.0 7.0 6.7 2.9 3.0 2.8 8.8 6.0 6.8 11.1 12.0 4.2 8.4 2.0 2.0 2.0 2.2 4.9 2.0 100.0 100.0 100.0 100.0 100.0 100.0 64.9 100.0
oranss 69.1 7.0 2.8 8.8 2.2 2.0 7.0 9.1 3.0 3.0 2.4 4.7 7.1 7.0 11.8 5.4 4.5 8.3 2.0 2.0 2.0 2.1 7.8 2.0 100.0 100.0 100.0 100.0 100.0 100.0 8.0 100.0
bradlm4 68.5 7.3 2.8 4.2 2.3 2.0 6.4 12.8 2.4 3.0 2.2 8.4 10.0 8.4 13.3 8.8 9.5 43.0 3.2 3.0 90.2 2.4 8.6 2.0 100.0 80.4 100.0 100.0 100.0 100.0 35.0 100.0
walkeb6 67.6 6.6 3.0 8.7 3.0 2.0 7.0 13.2 3.5 4.0 2.9 6.2 11.1 4.7 10.3 9.8 15.9 10.0 2.0 2.0 2.0 2.5 5.5 2.0 100.0 100.0 100.0 100.0 100.0 100.0 56.9 100.0
pfeffa 66.2 6.1 3.2 7.2 2.9 2.2 7.0 7.3 3.1 3.5 3.3 6.5 9.1 6.9 5.2 7.0 9.3 11.8 3.6 3.7 70.6 3.1 4.1 3.0 100.0 100.0 100.0 100.0 100.0 100.0 7.8 100.0
lehnem2 58.1 2.9 3.6 2.7 2.4 2.0 2.9 3.9 2.6 4.4 4.4 8.5 7.8 6.5 12.5 9.2 4.8 2.4 3.5 3.1 3.2 3.9 32.9 100.0 4.7 100.0 4.5 4.9 6.6 3.6 8.3 100.0
leiy3 58.1 2.0 2.4 2.5 2.0 2.0 2.0 3.3 2.7 2.0 3.3 8.9 6.2 2.4 6.3 2.4 2.0 2.0 3.0 2.0 2.0 3.9 20.0 100.0 2.0 100.0 2.0 2.0 2.0 2.0 2.3 100.0
yostj 57.8 2.2 2.6 2.2 3.4 2.0 2.0 2.3 3.2 2.0 3.3 10.0 12.6 3.2 8.5 6.2 2.0 2.1 3.0 2.0 2.0 3.0 100.0 100.0 2.0 100.0 2.0 2.0 2.0 2.0 2.2 100.0
haynep 57.5 2.0 2.6 2.5 3.2 2.0 2.0 4.3 2.1 2.0 5.2 4.7 8.4 2.7 9.4 7.8 2.3 2.0 3.0 2.0 2.0 3.0 100.0 100.0 2.0 100.0 2.0 2.0 2.0 2.0 10.2 100.0
nortod2 57.1 2.3 3.3 2.9 8.4 2.0 2.0 4.3 2.7 5.0 4.4 8.6 10.5 3.9 7.5 4.7 3.1 2.0 2.0 100.0 2.0 3.1 100.0 100.0 2.0 2.0 2.0 2.0 2.0 2.0 6.0 100.0
schreg 56.5 2.4 3.6 2.1 3.5 2.0 2.0 8.6 2.6 4.0 2.2 4.6 4.5 3.1 3.5 3.5 2.4 2.0 2.0 100.0 2.0 2.3 100.0 100.0 2.0 2.0 2.0 2.0 2.0 2.0 68.0 100.0
lih8 56.5 3.7 2.8 2.6 2.0 2.0 2.0 5.9 2.8 2.0 4.1 13.4 4.8 2.2 12.6 6.6 2.0 2.0 3.0 2.0 2.0 4.0 17.8 100.0 2.0 100.0 2.0 2.0 2.0 2.0 6.0 100.0
gertle 56.2 4.7 2.6 5.1 2.1 2.5 3.1 4.0 2.0 2.1 2.2 10.4 16.8 7.0 8.3 11.5 3.2 4.0 3.5 6.8 90.2 13.1 5.0 8.8 100.0 31.9 100.0 100.0 100.0 100.0 83.9 100.0
jacobr2 56.1 2.5 2.7 2.8 4.1 2.0 2.0 5.2 2.4 3.0 2.3 4.9 3.8 2.4 4.3 3.9 2.4 2.0 2.0 100.0 2.0 2.4 100.0 100.0 2.0 2.0 2.0 2.0 2.0 2.0 35.9 100.0
lawp 55.9 2.3 2.3 4.3 7.5 2.0 2.0 3.3 3.2 5.0 3.9 7.9 8.1 3.0 6.4 7.4 3.0 2.0 2.0 100.0 2.0 2.4 100.0 100.0 2.0 2.0 2.0 2.0 2.0 2.0 89.6 100.0
baern2 55.8 3.6 2.3 4.8 2.9 2.2 3.7 8.0 3.1 3.8 2.0 8.7 3.8 3.4 13.2 10.3 3.5 3.0 2.2 41.4 2.6 2.7 12.7 4.6 3.5 70.6 2.8 2.7 3.4 4.1   100.0
liuv 55.4 2.6 3.0 2.9 8.2 2.0 2.0 4.9 3.2 5.0 2.8 6.7 2.7 2.5 5.8 5.9 2.6 2.9 2.0 100.0 2.0 2.8 100.0 100.0 2.0 2.0 2.0 2.0 2.0 2.0 69.4 100.0
radocm 54.1 3.7 3.5 3.3 7.5 2.0 2.1 4.9 2.7 4.7 5.0 5.9 18.8 3.6 8.1 6.9 3.4 2.3 2.8 80.4 3.8 3.2 36.4 100.0 4.3 41.5 4.2 3.6 6.1 4.6 15.0 100.0
mancht 53.7 1.8 1.3 1.4 1.6 100.0 4.0 4.5 1.9 1.0 2.8 2.5 5.9 1.9 2.3 2.1 2.0 1.6 1.0 2.0 2.0 1.1 100.0 100.0 2.0 100.0 2.0 2.0 2.0 2.0 6.5 100.0
sardar 53.1 1.6 1.8 1.5 1.7 1.0 1.0 6.5 2.0 2.0 1.4 1.9 1.9 1.7 2.2 1.7 2.0 1.2 1.0 1.0 1.0 1.5 100.0 100.0 1.0 100.0 1.0 1.0 1.0 1.0 2.0 100.0
never_moves 28.1 1.1 1.5 1.1 1.4 1.0 1.0 1.0 1.9 1.0 1.5 1.7 1.2 1.3 2.3 4.0 1.0 1.0 100.0 1.0 1.0 100.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 100.0 100.0
moves_randomly 4.6 1.9 0.9 1.4 1.2 0.9 1.4 0.7 1.0 1.1 2.0 3.3 1.9 2.4 3.1 4.2 1.3 1.7 1.5 2.4 1.7 1.1 3.1 5.3 1.8 1.6 2.2 2.2 3.2 2.0 3.9 16.3



nevinl complicated_test

  PURSUERS pfeffalawpweinsanortod2huj10anderzyostjsusseadiamogwattephiglecnevinlwalkeb6metrombradlm4meerdgulata2weilgchampl2baern2lehnem2sheedbfreitjkinneeoransshurlet2haynepfauldajaffes2wux9moves_randomlynever_moves
EVADERS averages 8.8 10.4 11.5 11.7 11.8 12.4 12.7 14.0 14.1 15.5 15.6 15.6 15.7 17.2 17.2 17.7 18.2 18.3 27.2 27.6 27.9 28.1 28.1 31.5 34.8 40.4 40.6 45.2 45.9 46.5 52.3 95.1
diamog 84.3 16.2 12.2 21.3 10.0 38.6 100.0 100.0 100.0 100.0 15.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 57.7 44.2 42.7 53.3 73.6 59.1 65.0 34.5 45.9 96.2 83.8 62.8 99.3 100.0
lih8 81.7 13.2 18.3 12.6 10.0 55.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 21.4 63.2 55.3 37.0 56.7 74.2 57.4 56.6 29.9 75.7 73.3 52.1 76.8 100.0
yostj 80.6 5.0 15.6 18.3 4.0 16.6 33.7 24.4 100.0 4.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 91.8 81.0 79.0 94.5 87.7 16.8 90.6 17.1 15.4 19.2 97.1 12.6 36.6 100.0
nortod2 80.5 15.4 14.5 20.6 3.0 5.9 33.5 52.4 4.0 100.0 9.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 87.8 98.3 91.0 94.4 80.9 15.1 100.0 28.6 29.0 37.7 100.0 58.1 58.2 100.0
baern2 79.5 8.6 7.3 12.0 10.0 27.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 37.1 64.1 39.8 19.2 27.7 56.0 63.6 36.7 36.8 59.2 65.1 38.2 67.6 100.0
weissj3 73.7 4.8 4.7 11.7 3.0 7.8 4.0 4.0 4.0     100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 54.5 100.0 14.0 55.5 100.0 10.2 100.0 16.0   22.0 100.0 20.4 18.7 100.0
eastlk 69.0 5.8 7.2 11.4 5.0 14.8 7.2 6.6 6.0 6.0 6.0 100.0 100.0 6.0 6.2 100.0 100.0 100.0 100.0 37.0 33.4 27.9 39.4 25.7 25.0 25.5 35.2 36.0 55.7 71.8 32.0 61.0 100.0
haynep 68.0 10.9 15.6 15.4 10.0 13.4 12.0 12.0 10.0 11.4 7.0 10.0 10.0 10.0 10.7 10.0 10.0 10.0 10.0 50.0 38.7 23.9 29.6 53.7 58.0 68.4 32.2 21.0 67.8 91.3 42.3 95.3 100.0
sussea 67.7 8.7 9.4 6.4 5.0 12.4 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 24.1 5.0 5.0 5.0 5.0 73.8 67.2 81.9 81.0 60.7 70.0 90.4 32.4 24.1 82.1 90.3 53.1 83.9 100.0
lehnem2 66.8 5.4 33.9 12.7 4.0 9.0 4.9 7.4 10.0 4.0 10.0 10.0 10.0 10.0 10.7 10.0 10.0 10.0 10.0 53.8 72.4 50.1 76.4 57.4 17.4 76.4 12.8 14.1 31.8 100.0 10.9 56.4 100.0
lij17 65.4 9.6 3.0 8.1 3.0 22.1 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 47.1 47.2 49.6 64.4 64.9 64.6 49.4 41.6 26.1 59.5 77.5 45.8 71.4 100.0
clarkb7 64.8 10.6 7.7 9.5 7.0 12.7 8.9 8.3 7.0 8.1 8.0 7.0 7.0 7.0 9.2 7.0 7.0 7.0 7.0 32.4 19.9 39.2 20.0 21.0 52.3 56.2 30.4 27.5 74.3 77.5 30.7 94.4 100.0
liuv 64.5 9.0 9.5 13.3 5.9 9.1 6.7 7.0 7.0 7.0 5.3 25.5 16.1 28.0 6.3 16.0 24.7 15.3 24.7 33.1 44.9 45.9 24.9 49.7 68.2 83.7 17.5 9.6 76.9 100.0 39.9 86.1 100.0
wattep 63.9 7.1 8.0 7.9 10.0 17.3 10.7 11.9 12.0 11.8 7.0 12.0 12.0 12.0 13.6 12.0 12.0 12.0 12.0 25.8 16.7 34.5 22.9 46.4 45.6 26.6 100.0 100.0 100.0 26.1 100.0 75.4 100.0
leiy3 63.6 8.0 9.6 18.1 10.0 13.8 10.4 10.2 10.0 10.0 10.0 10.0 10.0 7.0 11.6 10.0 10.0 10.0 10.0 46.2 70.4 81.9 73.6 40.3 13.7 90.4 11.7 9.0 28.3 90.0 20.7 32.0 100.0
jacobr2 63.3 6.2 5.7 9.3 5.0 15.7 5.0 5.0 5.0 5.0 5.0 5.0 5.0 7.0 5.5 5.0 5.0 5.0 5.0 58.3 45.8 68.3 51.0 67.0 24.9 59.5 33.4 30.1 46.7 79.3 24.1 39.6 100.0
lawp 63.1 8.1 6.3 10.7 6.0 9.1 8.5 5.3 7.0 5.0 6.0 5.0 5.0 5.0 6.1 5.0 5.0 5.0 5.0 29.3 36.5 27.7 49.8 36.7 36.2 58.2 16.8 17.4 53.8 76.3 51.0 74.1 100.0
bassej4 63.1 5.3 43.6 8.2 4.0 7.6 5.3 4.8 6.0 4.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 6.0 57.4 33.8 55.3 62.1 60.0 14.0 34.1 17.5 16.2 11.6 93.4 16.9 54.4 100.0
callam3 62.7 5.6 5.7 7.5 5.0 5.1 5.7 5.4 5.0 5.0 9.0 7.0 7.0 7.0 6.2 7.0 7.0 7.0 7.0 35.4 46.7 34.2 18.2 26.6 38.7 64.4 14.4 14.4 58.4 88.8 33.8 83.7 100.0
pfeffa 62.6 7.7 5.1 12.2 6.4 14.7 5.0 5.0 4.7 5.9 6.3 8.1 4.9 5.7 5.0 6.2 5.2 5.1 5.2 23.2 21.9 27.0 31.0 45.4 52.6 48.0 21.6 19.0 64.2 66.6 34.0 85.4 100.0
radocm 62.3 10.3 9.8 14.4 5.8 12.8 8.1 11.3 7.7 7.9 17.1 8.1 17.3 17.9 6.5 25.2 6.2 16.3 25.0 24.9 33.2 25.0 51.4 27.9 34.0 65.1 16.8 22.3 58.8 76.1 33.0 71.8 100.0
hurlet2 62.0 6.9 5.9 8.1 7.0 10.9 6.8 6.5 7.0 5.0 7.0 7.0 7.0 7.0 8.8 7.0 7.0 7.0 7.0 17.8 9.0 18.2 11.8 10.4 49.0 13.2 100.0 100.0 100.0 29.9 100.0 59.7 100.0
weinsa 61.9 4.5 5.7 6.7 5.0 5.7 5.4 5.4 5.0 5.0 9.0 7.0 7.0 7.0 5.4 7.0 7.0 7.0 7.0 20.8 58.6 17.7 23.1 18.4 34.1 68.5 8.7 19.7 75.0 82.5 17.6 53.7 100.0
sardar 61.6 5.6 4.5 6.5 4.0 5.3 4.5 4.1 5.0 4.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 37.6 60.5 51.9 50.9 40.4 16.9 59.4 14.0 15.3 14.6 66.0 14.8 27.0 100.0
weilg 61.6 8.0 7.3 14.1 10.0 7.0 12.0 12.0 12.0 12.0 38.4 12.0 12.0 12.0 13.6 12.0 12.0 12.0 12.0 11.3 15.9 11.8 8.4 11.3 47.6 56.9 7.8 7.4 38.2 83.5 35.5 74.3 100.0
oranss 61.4 7.4 7.4 8.9 10.0 7.0 12.0 12.0 12.0 12.0 56.0 12.0 12.0 12.0 15.2 12.0 12.0 12.0 12.0 10.5 25.8 10.1 9.1 7.5 37.1 73.6 8.0 9.4 43.9 58.7 28.6 62.0 100.0
bradlm4 61.4 6.2 5.8 5.9 5.0 6.0 5.8 6.4 5.0 7.0 5.0 5.0 5.0 5.0 7.7 5.0 5.0 5.0 5.0 44.3 16.9 33.6 43.8 40.2 47.2 28.0 100.0 100.0 100.0 35.4 100.0 62.5 100.0
champl2 61.4 13.3 7.2 9.5 6.2 9.9 6.8 9.9 7.1 9.0 7.8 7.0 16.3 6.1 8.1 25.5 6.1 24.9 15.5 38.5 48.2 24.5 41.4 37.2 56.8 56.9 18.1 16.9 51.2 95.3 49.5 85.7 100.0
martij22 61.4 7.3 5.6 6.3 5.0 12.9 6.0 6.0 5.0 5.0 5.0 5.0 5.0 5.0 8.3 5.0 5.0 5.0 5.0 22.9 22.8 31.1 31.1 33.3 59.5 24.3 100.0 100.0 100.0 29.7 100.0 59.9 100.0
juddr2 61.2 6.6 7.1 6.6 5.0 13.2 5.6 5.6 5.0 5.0 5.0 5.0 5.0 5.0 8.4 5.0 5.0 5.0 5.0 41.8 20.9 35.3 29.8 28.3 30.0 30.8 100.0 100.0 100.0 30.6 100.0 76.9 100.0
never_moves 53.2 5.5 4.8 4.7 4.0 7.5 4.9 5.3 4.0 7.1 4.0 4.0 4.0 4.0 4.0 4.0 4.0 4.0 4.0 12.5 9.7 11.2 15.4 10.5 15.9 9.2 100.0 100.0 22.9 9.1 100.0 34.6 100.0
moves_randomly 25.3 5.5 4.5 5.2 3.8 7.4 3.8 4.1 4.8 4.2 3.9 4.5 3.7 4.7 5.4 4.7 4.5 5.4 3.7 13.0 11.2 8.4 9.1 15.2 13.4 8.7 11.6 9.1 15.5 10.1 10.9 26.4 60.9



lih8 interesting_game

  PURSUERS lawpnortod2susseayostjpfeffafauldamoves_randomlyliuvqiuzdiamoghaynephurlet2wux9samsokwattepfreitjlih8gulata2sheedbclarkb7oranssweissj3lehnem2schemenevinlluongcchampl2higlecweilgradocmnever_moves
EVADERS averages 8.5 9.0 9.0 9.3 9.5 23.1 26.5 27.9 28.4 28.7 29.1 29.4 31.1 31.7 34.1 34.1 34.1 34.1 34.1 34.1 34.1 34.1 34.1 34.1 34.1 34.1 34.1 34.1 34.1 34.2 91.3
sussea 55.8 4.4 3.0 3.0 3.5 5.3 14.5 46.3 3.0 15.8 3.0 3.0 3.0 8.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lih8 55.6 10.2 3.0 3.0 5.1 4.8 16.8 56.9 4.0 24.0 4.0 4.0 4.0 19.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
haynep 55.3 8.1 3.0 3.0 5.0 5.4 12.6 47.8 5.0 48.0 5.0 5.0 5.0 9.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
diamog 55.3 5.7 3.0 3.0 3.9 5.4 8.1 50.7 4.0 36.0 4.0 4.0 4.0 12.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
radocm 54.7 3.5 3.0 3.0 3.6 3.7 7.6 41.2 3.9 35.4 3.8 4.0 3.5 13.7 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
liuv 54.5 5.0 3.0 3.0 3.0 4.6 14.1 45.2 3.0 27.5 3.0 3.0 3.0 11.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
nortod2 54.4 4.7 3.0 3.0 3.7 4.5 7.1 23.3 3.0 17.5 3.0 3.0 3.0 12.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
champl2 54.1 7.1 3.0 3.0 5.2 5.3 9.9 35.1 3.8 31.8 3.6 3.4 3.9 12.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
clarkb7 53.6 4.5 3.0 3.0 4.8 4.4 11.4 41.4 5.0 38.4 5.0 5.0 5.0 13.5 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lij17 53.6 3.3 3.0 3.0 3.3 3.7 6.3 22.1 4.0 28.7 4.0 4.0 4.0 13.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
leiy3 53.5 4.2 2.0 2.0 2.3 2.5 8.1 24.1 2.0 12.5 2.0 2.0 2.0 6.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
pfeffa 53.5 7.0 3.0 3.0 3.5 4.3 7.6 37.3 5.0 19.2 5.0 5.0 5.0 18.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
yostj 53.3 3.0 2.0 2.0 2.4 2.1 9.1 31.9 2.0 9.4 2.0 2.0 2.0 4.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lehnem2 53.2 4.4 2.0 3.0 3.8 4.2 15.4 28.0 3.0 29.8 3.0 3.0 3.0 5.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
bassej4 52.2 2.7 2.0 2.0 2.4 2.5 4.4 18.0 3.0 15.4 3.0 3.0 3.0 5.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
jacobr2 51.8 2.1 1.0 2.0 1.3 1.7 1.5 4.2 1.0 3.3 1.0 1.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
sardar 51.8 1.9 1.0 2.0 1.6 2.2 1.8 2.7 1.0 2.6 1.0 1.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
dimitd 51.0 2.3 1.0 2.0 1.3 1.5 1.7 4.6 1.0 3.8 1.0 1.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
duprei 50.6 1.4 1.0 2.0 1.9 1.9 2.0 5.7 1.0 6.8 1.0 1.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
wux9 50.4 3.6 2.0 2.0 2.8 2.3 5.8 15.0 2.0 13.4 2.0 2.0 2.0 6.8 2.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
mancht 50.2 1.6 1.0 2.0 1.5 2.2 1.4 3.9 1.0 3.3 1.0 1.0 1.0 1.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
gertle 35.1 4.8 8.1 3.0 3.4 3.4 100.0 49.0 100.0 67.7 100.0 100.0 100.0 100.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 100.0
martij22 35.0 3.5 3.0 3.0 3.1 3.0 100.0 39.0 100.0 61.2 100.0 100.0 100.0 100.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 100.0
wattep 35.0 4.0 3.0 3.0 3.2 3.4 100.0 36.1 100.0 76.8 100.0 100.0 100.0 100.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 100.0
hurlet2 34.8 4.6 3.0 3.0 3.7 3.5 100.0 24.3 100.0 72.4 100.0 100.0 100.0 100.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 100.0
juddr2 34.8 4.0 3.0 3.0 3.1 3.5 100.0 33.3 100.0 61.7 100.0 100.0 100.0 100.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 100.0
gulata2 34.4 3.7 3.0 3.0 3.4 3.3 100.0 53.9 100.0 52.4 100.0 100.0 100.0 100.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 100.0
scheme 32.9 4.4 3.0 3.0 4.3 4.3 100.0 38.6 100.0 74.1 100.0 100.0 100.0 100.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 100.0
sheedb 32.5 4.0 3.0 3.0 3.8 4.4 100.0 23.7 100.0 54.8 100.0 100.0 100.0 100.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 100.0
stammn 31.8 4.6 3.0 3.0 4.4 5.2 100.0 10.1 100.0 16.3 100.0 100.0 100.0 100.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 100.0
never_moves 25.7 1.7 1.0 1.0 1.2 1.4 1.9 4.8 100.0 32.7 100.0 100.0 100.0 100.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 100.0
moves_randomly 4.0 1.4 1.6 1.5 1.7 0.7 2.7 11.4 1.4 5.9 1.1 2.5 0.8 7.1 2.6 1.5 2.0 1.3 0.8 1.7 1.4 1.8 0.9 0.8 1.8 1.5 1.0 1.6 1.9 1.0 1.0 29.5



faulda rpi_res_halls

  PURSUERS nortod2huj10anderzpfeffafauldasusseaweinsadiamogyostjjacobr2lawphurlet2moves_randomlybassej4kinneeluongcgoldmnbergec5baern2dupreiharveb2metromhanovnliuvoranssnevinlweissj3freitjlehnem2champl2never_moves
EVADERS averages 3.8 4.0 4.0 5.3 8.6 13.6 17.8 18.7 19.3 19.3 19.5 20.3 21.1 21.4 21.7 22.1 23.2 26.1 27.0 33.1 34.3 37.2 37.8 39.4 43.7 45.0 45.4 45.5 45.6 45.7 88.0
lij17 81.6 1.0 5.3 4.1 4.8 6.5 100.0 43.7 100.0 100.0 10.2 100.0 4.7 25.0 30.0 100.0 3.7 5.8 2.0 100.0 16.0 20.4 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
stammn 81.5 1.0 4.9 2.7 2.2 23.1 5.0 20.2 100.0 100.0 13.0 100.0 2.8 23.5 26.2 100.0 2.9 4.2 100.0 100.0 15.1 30.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
higlec 81.3 1.0 3.2 6.1 4.4 10.3 4.0 12.0 100.0 100.0 12.7 100.0 3.0 24.8 20.5 100.0 3.5 4.6 100.0 100.0 16.1 36.9 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
eastlk 78.8 1.0 5.9 7.9 4.5 12.0 100.0 48.2 100.0 100.0 39.8 100.0 4.0 43.3 38.2 100.0 7.2 3.1 2.0 2.0 12.9 28.9 100.0 100.0 2.0 2.0   100.0 100.0 100.0 100.0 100.0
yostj 78.7 1.0 11.4 11.3 12.3 3.8 100.0 71.3 3.2 4.3 40.6 6.4 4.0 45.7 29.6 5.6 100.0 6.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
lih8 77.9 1.0 9.2 8.3 15.0 5.6 7.0 70.8 4.2 4.1 29.8 3.5 3.4 54.3 52.5 4.1 100.0 17.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
sussea 77.8 1.0 7.1 4.5 5.4 6.9 100.0 25.7 100.0 100.0 28.1 100.0 4.1 28.3 21.8 100.0 3.3 9.5 2.0 1.0 25.5 13.9 100.0 100.0 1.0 1.0   100.0 100.0 100.0 100.0 100.0
haynep 77.5 1.0 7.9 3.9 6.8 7.9 7.0 73.6 3.5 4.8 27.9 1.5 7.0 32.7 55.1 5.9 100.0 12.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
oranss 76.7 1.0 4.2 4.1 4.5 12.9 8.0 23.3 100.0 100.0 28.0 100.0 3.1 35.1 28.5 100.0 3.3 5.7 2.0 1.0 21.1 15.6 100.0 100.0 1.0 1.0   100.0 100.0 100.0 100.0 100.0
bassej4 76.6 1.0 6.2 6.8 4.9 10.3 8.0 18.6 100.0 100.0 36.8 100.0 4.1 22.8 27.3 100.0 2.8 5.9 2.0 2.0 16.3 21.2 100.0 100.0 1.0 1.0   100.0 100.0 100.0 100.0 100.0
weinsa 76.6 1.0 4.7 4.8 6.0 19.0 8.0 24.4 100.0 100.0 29.4 100.0 3.6 25.3 26.9 100.0 4.1 7.2 2.0 1.0 13.5 12.8 100.0 100.0 1.0 1.0   100.0 100.0 100.0 100.0 100.0
mancht 76.5 100.0 4.1 2.4 4.9 3.2 4.0 26.2 1.4 4.5 7.3 1.3 3.9 8.2 7.2 3.5 100.0 5.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
goldmn 76.5 1.0 5.7 5.6 5.3 8.9 8.0 32.5 100.0 100.0 27.5 100.0 3.1 29.0 17.4 100.0 3.8 6.2 2.0 1.0 17.9 15.4 100.0 100.0 1.0 1.0   100.0 100.0 100.0 100.0 100.0
diamog 76.5 1.0 5.1 5.8 4.5 9.8 8.0 24.7 100.0 100.0 19.3 100.0 3.7 21.8 21.1 100.0 4.6 6.9 2.0 2.0 29.4 15.3 100.0 100.0 1.0 1.0   100.0 100.0 100.0 100.0 100.0
leiy3 76.1 1.0 7.7 7.3 4.7 5.1 5.0 24.9 2.5 4.5 27.6 3.6 3.0 22.4 26.9 4.0 100.0 7.2 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
juddr2 76.1 1.0 3.6 5.8 6.4 5.9 8.0 19.7 100.0 100.0 19.9 100.0 5.3 20.4 21.3 100.0 2.3 7.9 2.0 1.0 13.2 16.2 100.0 100.0 1.0 1.0   100.0 100.0 100.0 100.0 100.0
nortod2 75.8 1.0 4.5 6.2 3.8 3.1 5.0 26.2 2.9 4.0 22.1 2.3 2.8 14.0 23.5 4.3 100.0 4.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
lehnem2 75.7 1.0 5.1 5.3 5.4 5.5 5.0 25.3 2.9 4.8 13.6 2.6 4.9 17.4 11.9 4.8 100.0 8.7 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
dimitd 75.4 1.0 3.9 4.4 6.0 3.3 4.0 31.1 1.5 3.0 6.8 1.5 3.1 9.7 10.6 3.0 100.0 5.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
sardar 75.3 1.0 3.1 3.2 2.5 3.7 4.0 32.9 1.9 3.6 8.5 1.7 3.3 5.9 10.3 2.6 100.0 4.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
jacobr2 75.2 1.0 3.0 3.7 4.0 4.4 4.0 22.1 2.4 3.3 7.9 1.3 2.7 8.4 9.6 4.0 100.0 5.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
schreg 75.2 1.0 4.2 3.6 4.6 4.1 4.0 17.8 2.6 6.9 6.3 1.8 2.0 8.5 7.1 2.4 100.0 2.8 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0
radocm 74.1 1.0 7.7 7.6 5.2 9.4 18.7 69.9 2.4 6.3 38.6 3.9 3.7 37.8 34.1 6.0 100.0 8.1 100.0 100.0 100.0 100.0 15.0 6.8 13.6 100.0   100.0 100.0 100.0 100.0 100.0
clarkb7 73.9 1.0 6.2 6.2 8.8 5.8 7.0 70.4 2.6 5.6 57.7 3.1 5.5 38.5 37.1 3.9 100.0 6.7 100.0 100.0 100.0 100.0 9.8 5.0 7.0 100.0   100.0 100.0 100.0 100.0 100.0
lawp 73.9 1.0 7.4 5.5 8.4 4.0 7.0 51.7 3.2 5.4 41.3 2.9 4.3 56.8 55.0 4.2 100.0 7.9 100.0 100.0 100.0 100.0 7.4 5.0 7.0 100.0   100.0 100.0 100.0 100.0 100.0
liuv 73.8 1.0 5.4 7.7 5.7 8.5 22.0 56.1 3.6 5.7 52.1 3.9 3.7 35.5 18.4 4.5 100.0 5.0 100.0 100.0 100.0 100.0 17.0 9.0 13.0 100.0   100.0 100.0 100.0 100.0 100.0
callam3 72.5 1.0 4.9 3.8 3.0 15.7 3.0 19.2 4.1 4.1 25.2 3.7 2.9 18.1 26.2 4.8 2.2 4.6 100.0 1.0 7.7 26.6 100.0 100.0 1.0 1.0   100.0 100.0 100.0 100.0 100.0
pfeffa 72.2 3.0 5.6 5.6 5.7 13.4 50.6 34.7 37.0 29.7 32.1 38.3 3.5 17.4 30.9 46.9 3.7 4.8 5.0 2.7 20.1 22.4 30.3 15.4 2.1 1.6   100.0 100.0 100.0 100.0 100.0
champl2 72.2 2.0 3.6 4.9 4.9 8.9 69.8 37.7 32.0 44.6 21.8 50.3 3.1 20.8 27.2 30.3 5.8 5.0 3.0 2.1 19.9 18.3 26.3 14.0 1.5 1.7   100.0 100.0 100.0 100.0 100.0
walkeb6 71.0 1.0 4.3 4.2 4.5 14.1 100.0 21.6 14.0 12.7 34.3 17.2 3.0 28.6 18.2 15.4 4.5 6.3 4.0 1.0 20.1 12.8 13.6 10.0 1.0 1.0   100.0 100.0 100.0 100.0 100.0
never_moves 46.6 1.0 4.9 5.1 3.3 13.6 1.0 2.4 1.7 1.9 23.0 1.6 100.0 17.0 23.9 4.0 3.4 100.0 1.0 1.0 15.4 28.2 1.0 1.0 100.0 100.0 1.0 1.0 1.0 1.0 1.0 100.0
moves_randomly 8.2 3.0 2.2 2.6 0.9 6.2 2.2 2.7 4.1 2.7 6.0 3.4 3.1 13.5 11.2 4.6 1.3 5.2 3.6 2.7 14.3 7.9 2.3 3.3 5.0 4.3 3.2 4.0 3.2 3.0 2.8 18.9



wattep kanto

  PURSUERS liuvpfeffalawpweinsakinneeanderzhuj10yostjnortod2susseadiamogmoves_randomlyqiuzfauldadupreiwux9luongcmetromhurlet2hanovnhaynepharveb2oranssschemebaern2goldmnbeerjhiglecgallan2sheedbnever_moves
EVADERS averages 6.8 7.6 8.8 11.1 13.9 15.0 15.4 15.4 17.7 17.9 18.7 23.6 23.7 23.9 32.2 34.4 36.6 37.1 38.7 38.9 40.1 40.6 44.5 45.8 50.6 53.1 53.3 53.7 53.7 53.7 81.8
sussea 91.0 5.0 15.2 35.4 17.0 17.5 100.0 100.0 100.0 100.0 100.0 100.0 66.2 43.1 37.9 65.3 37.1 100.0 100.0 100.0 100.0 100.0 66.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
lih8 90.4 5.0 11.7 14.0 22.4 36.4 100.0 100.0 100.0 100.0 100.0 100.0 72.2 49.2 43.0 64.1 29.2 100.0 100.0 100.0 100.0 100.0 80.4 100.0 100.0 100.0 36.5 100.0 100.0 100.0 100.0 100.0
diamog 90.2 5.0 15.2 9.6 33.1 37.2 100.0 100.0 100.0 100.0 100.0 100.0 68.9 61.7 27.9 62.8 39.3 100.0 100.0 100.0 100.0 100.0 53.5 100.0 100.0 100.0 43.2 100.0 100.0 100.0 100.0 100.0
haynep 90.0 6.0 6.1 14.9 11.2 35.7 100.0 100.0 100.0 100.0 100.0 100.0 38.8 64.4 37.0 58.4 14.3 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 44.0 100.0 100.0 100.0 100.0 100.0
yostj 89.0 8.0 10.5 7.4 42.8 9.6 100.0 100.0 100.0 100.0 100.0 100.0 34.4 17.3 17.8 91.9 10.4 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 22.2 81.0 100.0 100.0 100.0 100.0
baern2 85.2 5.0 8.1 5.6 20.5 19.5 34.1 31.1 33.7 100.0 100.0 100.0 47.5 27.9 47.9 48.8 18.0 100.0 100.0 25.7 100.0 100.0 59.3 100.0 100.0 100.0 39.7 100.0 100.0 100.0 100.0 100.0
stammn 81.2 4.0 7.1 4.6 6.0 17.9 8.5 9.2 6.9 100.0 5.0 100.0 33.4 43.2 35.6 27.1 39.4 8.9 100.0 28.9 100.0 100.0 18.2 100.0 100.0 100.0 46.1 100.0 100.0 100.0 100.0 100.0
nevinl 79.8 6.0 4.6 5.3 12.5 19.9 6.7 6.0 7.4 100.0 100.0 71.8 35.0 21.3 40.6 30.0 14.7 48.1 100.0 6.2 100.0 6.0 38.8 15.0 100.0 100.0 63.3 100.0 100.0 100.0 100.0 100.0
higlec 78.7 5.0 5.0 5.0 10.9 27.1 5.7 5.7 5.5 100.0 100.0 62.0 25.2 30.4 51.5 36.4 15.2 10.2 100.0 5.0 100.0 5.0 43.7 13.0 100.0 13.0 82.0 100.0 100.0 100.0 100.0 100.0
lehnem2 77.9 6.0 4.0 6.3 11.1 9.3 6.3 6.4 7.0 3.0 6.0 6.2 29.8 19.8 13.3 83.7 7.1 100.0 100.0 6.0 100.0 6.0 85.6 100.0 100.0 100.0 11.0 62.5 100.0 100.0 100.0 100.0
liuv 77.6 5.2 8.7 8.5 17.1 28.0 10.3 9.1 12.2 8.7 11.6 12.1 47.9 61.9 47.7 72.2 20.4 17.8 12.9 9.9 13.0 17.4 100.0 100.0 23.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
radocm 77.1 5.4 12.2 6.5 17.2 27.6 14.5 21.1 19.0 15.1 12.4 11.4 48.1 46.0 45.6 84.7 26.7 13.5 10.9 18.2 11.7 16.2 97.0 100.0 24.1 100.0 30.9 100.0 100.0 100.0 100.0 100.0
lawp 76.5 6.0 9.9 8.5 18.6 22.0 7.0 10.3 8.1 6.0 6.0 6.0 52.8 41.6 32.5 65.7 11.8 11.3 6.0 7.0 6.0 7.0 100.0 100.0 100.0 100.0 36.8 100.0 100.0 100.0 100.0 100.0
clarkb7 76.1 4.0 22.0 10.1 16.8 13.8 11.1 17.8 12.4 8.0 8.0 8.1 57.6 45.0 55.1 66.0 21.9 10.1 8.0 65.8 8.0 16.0 55.3 100.0 8.0 100.0 24.0 100.0 100.0 100.0 100.0 100.0
perezg2 76.0 3.0 3.0 3.3 8.6 4.4 3.0 3.0 3.0 3.0 3.0 3.0 18.7 13.7 16.7 31.6 5.7 100.0 100.0 3.0 100.0 3.0 35.3 100.0 100.0 100.0 16.1 81.0 100.0 100.0 100.0 100.0
celic 75.7 3.0 3.0 3.3 8.9 6.6 3.0 3.0 3.0 3.0 3.0 3.0 16.3 11.1 16.7 33.8 4.8 100.0 100.0 3.0 100.0 3.0 57.3 100.0 100.0 100.0 26.4 14.7 100.0 100.0 100.0 100.0
sarbos 75.6 3.0 3.0 3.1 7.1 7.2 3.0 3.0 3.0 3.0 3.0 3.0 10.7 9.6 25.6 28.5 3.8 100.0 100.0 3.0 100.0 3.0 27.2 100.0 100.0 100.0 25.2 62.4 100.0 100.0 100.0 100.0
wux9 75.4 3.0 4.0 3.9 6.7 5.5 3.7 4.1 3.9 3.0 3.0 3.4 19.4 22.8 12.4 31.1 5.0 100.0 100.0 4.0 100.0 4.0 33.5 100.0 100.0 100.0 6.2 81.0 100.0 100.0 100.0 100.0
duprei 74.1 1.0 4.1 4.1 3.8 3.0 3.0 3.6 3.0 3.0 3.0 2.0 15.0 15.6 13.6 11.4 8.4 100.0 100.0 6.0 100.0 6.0 17.4 100.0 100.0 100.0 7.0 51.2 100.0 100.0 100.0 100.0
eastlk 74.0 5.0 7.8 5.4 13.8 19.9 9.0 9.0 9.0 9.0 9.0 9.0 37.9 22.4 15.2 33.9 38.7 11.7 9.0 9.0 9.0 9.0 63.0 9.0 23.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
weilg 73.4 6.0 3.6 3.6 7.0 12.3 6.0 6.0 6.0 6.0 6.0 6.0 43.5 25.1 41.2 52.1 12.5 8.0 6.0 6.0 6.0 6.0 33.5 6.0 100.0 100.0 34.7 100.0 100.0 100.0 100.0 100.0
pfeffa 72.8 6.0 7.7 6.8 12.0 13.7 14.3 15.9 16.3 7.3 8.5 13.5 36.0 40.5 45.8 47.3 32.8 11.8 16.4 20.6 14.8 17.1 28.9 30.0 17.4 50.1   100.0 100.0 100.0 100.0 100.0
callam3 72.8 1.0 1.2 1.7 4.4 1.0 1.0 1.0 1.0 1.0 1.0 1.0 6.0 3.7 6.8 29.0 1.2 100.0 100.0 1.0 100.0 1.0 68.8 100.0 100.0 100.0 1.4 2.3 100.0 100.0 100.0 100.0
walkeb6 72.7 12.0 3.2 3.8 7.3 8.5 4.4 4.6 4.0 7.0 7.0 7.0 22.9 28.5 21.1 18.2 13.1 100.0 7.0 3.0 7.0 3.0 37.3 100.0 8.0 100.0 7.6 92.1 100.0 100.0 100.0 100.0
oranss 72.2 6.0 4.5 4.7 11.9 12.0 6.0 6.0 6.0 6.0 6.0 6.0 16.8 22.7 21.3 24.2 8.2 9.0 6.0 6.0 6.0 6.0 44.7 6.0 100.0 100.0 33.6 90.6 100.0 100.0 100.0 100.0
weinsa 71.6 2.0 3.1 3.3 10.5 9.2 6.0 6.0 6.0 6.0 6.0 6.0 18.0 7.0 19.0 24.5 7.1 7.0 6.0 6.0 6.0 6.0 31.1 6.0 100.0 100.0 68.8 63.2 100.0 100.0 100.0 100.0
lij17 70.9 4.0 6.0 4.9 7.5 9.1 7.6 6.8 8.0 6.0 6.0 6.0 20.8 31.0 27.8 26.5 13.5 15.4 6.0 11.0 6.0 11.0 21.3 6.0 9.0 100.0   100.0 100.0 100.0 100.0 100.0
weissj3 65.6 11.0 4.0   6.0         3.0   100.0 16.0   10.5     100.0 100.0   100.0     100.0 100.0 100.0   100.0 100.0 100.0 100.0  
nortod2 65.3 0.0 0.1 0.0 5.6 0.0 0.3 0.2 0.4 0.0 0.0 0.4 0.3 0.0 0.0 95.7 0.0 100.0 100.0 0.0 100.0 0.0 100.0 100.0 100.0 100.0 0.0 0.0 100.0 100.0 100.0 0.0
leiy3 64.2 0.0 0.7 1.0 7.3 0.3 0.6 0.0 0.5 0.0 0.0 0.0 0.2 0.0 0.3 79.3 0.0 100.0 2.0 0.0 100.0 0.0 100.0 100.0 100.0 100.0 0.0 0.0 100.0 100.0 100.0 0.0
never_moves 20.0 0.0 0.3 0.2 0.0 0.2 0.1 0.1 0.1 0.0 0.0 0.2 1.4 0.0 1.5 1.6 100.0 0.0 0.0 100.0 0.0 100.0 1.1 0.0 0.0 0.0 100.0 0.0 0.0 0.0 0.0 100.0
moves_randomly 7.5 0.6 2.0 1.8 3.3 1.4 0.5 1.7 0.3 0.8 0.3 0.9 1.3 0.9 3.5 9.4 1.7 1.3 1.9 2.6 2.0 0.9 6.8 1.5 1.2 0.9   3.4 3.8 2.1 1.8 21.2



celic world_map

  PURSUERS lawphuj10pfeffaliuvluongcsusseakinneenortod2schemehurlet2baern2haynepfauldaoransshanovnqiuznevinlwattepgertlefreitjmoves_randomlymetromgoldmnlehnem2sheedbweissj3wux9champl2walkeb6beerjnever_moves
EVADERS averages 20.6 24.8 24.8 30.7 34.6 35.3 36.8 37.1 37.3 37.5 41.5 45.7 47.1 47.6 48.6 48.7 49.4 50.0 51.0 51.2 51.4 51.6 51.9 52.8 52.8 53.1 53.1 53.4 54.1 54.6 79.0
diamog 80.8 90.1 85.4 87.4 11.0 100.0 100.0 100.0   100.0 74.4 100.0 100.0 100.0 100.0 100.0 96.1   100.0 100.0 100.0 100.0 100.0 76.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
gertle 79.4 28.3 33.5 53.3 98.7 98.2 100.0 90.0 1.5 100.0 100.0 94.0 100.0 95.2 100.0 100.0 100.0   100.0 29.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
sussea 79.1 47.1 69.9 94.0 13.0 98.0 100.0 93.1   100.0 39.9 100.0 100.0 85.6 100.0 100.0 92.0   100.0 100.0 100.0 95.1 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
baern2 78.1 42.2 63.6 51.5 36.3 54.5 56.7 95.5   64.4 100.0 100.0 100.0 93.3 100.0 100.0 90.2   100.0 100.0 100.0 96.5 100.0 80.4 100.0 100.0 100.0 95.8 100.0 100.0 100.0 100.0
scheme 78.0 20.4 100.0 30.7 28.0 100.0 100.0 86.0   100.0 90.6 100.0 100.0 100.0 100.0 100.0 88.6   100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0
lih8 77.5 57.3 91.7 87.4 9.0 74.3 17.0 89.2   11.0 92.4 100.0 100.0 100.0 100.0 100.0 100.0   92.0 100.0 100.0 100.0 100.0 77.8 100.0 100.0 100.0 85.7 82.2 100.0 100.0 100.0
lawp 77.2 18.9 37.9 32.9 100.0 80.8 100.0 77.5   100.0 42.2 100.0 100.0 91.3 100.0 100.0 85.6   100.0 100.0 100.0 95.0 100.0 91.0 100.0 100.0 100.0 91.0 100.0   100.0 100.0
goldmn 76.7 51.7 29.0 52.1 11.0 90.3 100.0 87.0   100.0 22.1 100.0 100.0 93.5 100.0 100.0 100.0   100.0 100.0 100.0 91.7 100.0 92.4 100.0 100.0 100.0 94.1 100.0   100.0 100.0
weilg 76.6 26.4 45.9 72.8 11.0 100.0 100.0 74.5   100.0 20.7 100.0 100.0 86.9 100.0 100.0 92.8   100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 91.0 100.0   100.0 100.0
sheedb 76.0 14.2 83.2 21.3 100.0 100.0 100.0 65.2   100.0 100.0 100.0 100.0 98.0 100.0 100.0 89.6   100.0 100.0 100.0 92.9 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0
gulata2 75.8 6.4 26.7 51.6 100.0 87.7 100.0 72.1   100.0 100.0 100.0 100.0 100.0 100.0 100.0 99.6   100.0 100.0 100.0 91.6 100.0 100.0 100.0 100.0 100.0 100.0 100.0   100.0 100.0
hwangk2 75.8 15.6 25.5 37.2 12.6 86.5 100.0 71.9   100.0 26.4 100.0 100.0 90.7 100.0 100.0 96.5   100.0 100.0 100.0 100.0 100.0 94.2 100.0 100.0 100.0 91.4 100.0   100.0 100.0
oranss 75.4 20.8 25.9 26.7 11.0 68.1 100.0 70.7   100.0 25.2 100.0 100.0 82.9 100.0 100.0 94.6   100.0 100.0 100.0 91.1 100.0 95.4 100.0 100.0 100.0 89.9 100.0   100.0 100.0
qiuz 75.1 11.3 33.9 45.8 11.7 76.0 100.0 70.2   100.0 24.9 100.0 100.0 78.7 100.0 100.0 96.3   100.0 100.0 100.0 100.0 100.0 97.1 100.0 100.0 100.0 92.2 100.0   100.0 100.0
eastlk 69.0 14.9 18.4 13.4 12.0 21.3 100.0 100.0   100.0 21.3 21.0 12.0   10.0 100.0 100.0   100.0 100.0 100.0   100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0
liuv 68.2 14.3 25.0 26.0 11.6 34.5 12.5 68.8   16.2 12.1 51.7 20.2 84.1 100.0 54.4 87.2   70.6 80.2 90.6 89.2 73.7 82.3 100.0 100.0 100.0 76.1 80.6   100.0 100.0
yostj 67.2 11.0 48.0 48.5 4.0 99.6 17.0 7.8   11.0 24.2 100.0 1.0 34.6 100.0 100.0 23.8   91.1 25.0 100.0 64.2 100.0 9.9 100.0 100.0 100.0 4.6 100.0 100.0 51.3 100.0
haynep 66.3 14.1 17.3 19.1 3.0 18.0 12.0 56.8 2.0 100.0 11.9 100.0 3.0 85.7 100.0 100.0 81.7   62.2 100.0 70.6 72.6 100.0 36.0 100.0 100.0 100.0 42.2 71.6   80.8 100.0
nortod2 64.2 8.3 25.8 25.4 5.0 94.2 17.0 7.2 2.0 11.0 10.5 100.0 1.0 24.6 100.0 100.0 32.4   82.2 22.8 100.0 46.2 100.0 10.6 100.0 100.0 100.0 10.8 100.0 100.0 22.4 100.0
lij17 64.0 13.9 16.9 14.0 9.0 10.4 19.0 67.6   19.0 11.7 15.0 9.0 99.7 9.0 9.0 98.7   83.6 100.0 91.8 87.8 100.0 68.5 100.0 100.0 100.0 65.8 91.8 10.0 100.0 100.0
leiy3 63.4 7.7 12.6 16.1 6.0 24.7 8.0 3.5 1.0 1.0 16.7 100.0 1.0 39.0 100.0 100.0 40.6   100.0 10.2 100.0 68.3 100.0 29.0 100.0 100.0 100.0 1.3 100.0   50.7 100.0
radocm 62.9 20.0 44.0 23.0 8.4 41.2 11.7 52.7 2.5 13.8 14.2 51.0 25.2 63.8 90.1 38.4 81.8 10.0 82.4 80.3 52.5 92.3 42.4 53.9 100.0 90.8 90.3 52.4 80.5   90.1 100.0
clarkb7 62.7 13.1 73.4 12.2 6.0 61.0 1.0 82.6 1.0 5.0 36.7 1.0 1.0 90.1 100.0 1.0 70.5   100.0 60.4 100.0 63.8 100.0 56.4 100.0 100.0 100.0 14.8 100.0   100.0 100.0
lehnem2 57.8 2.5 6.1 1.7 0.0 86.1 100.0 6.4 0.0 100.0 0.0 100.0 0.0 32.3 100.0 100.0 61.6   100.0 100.0 100.0 16.1 100.0 0.0 100.0 100.0 100.0 0.0 100.0   41.0 0.0
rosado 54.9 10.7 22.1 36.9 14.6 17.6 7.9 60.5   13.7 18.3 31.8 26.5 100.0 51.4 41.5 100.0 5.0 50.1 80.2 52.3 99.3 52.5 91.7 66.1 48.1 37.4 63.8 49.0   100.0 100.0
hurlet2 54.8 9.7 40.1 23.3 6.0 20.5 100.0 50.9   100.0 57.6 18.0 100.0 94.7 100.0 100.0 76.4   21.1 100.0 36.9 66.7 100.0 100.0 100.0 100.0 100.0 89.7 23.2 3.0 80.7 100.0
pfeffa 52.1 7.1 4.4 4.0 3.9 6.2 17.3 63.4 1.8 7.9 6.9 7.2 8.1 54.1 4.5 55.5 63.4 0.0 60.7 90.0 70.8 53.6 36.9 42.4 90.0 50.0 60.3 70.9 70.1   100.0 100.0
callam3 48.8 2.2 2.2 32.3 4.0 70.3 1.0 8.2 1.0 100.0 3.1 1.0 1.0 44.6 100.0 1.0 16.6   100.0 20.8 100.0 45.8 100.0 3.0 100.0 100.0 100.0 24.2 100.0   4.9 2.0
weissj3 39.0 1.1 4.1 0.8 0.0 7.0   0.2 0.0 100.0 0.0   0.0   100.0 100.0 0.5         67.2   0.0       0.0     22.0 0.0
champl2 38.7 22.4 22.5 22.0 7.9 24.0 9.5 71.0   11.0 20.2 55.5 71.0 77.7 10.0 38.5 25.0   15.0 50.5 6.5   91.0   100.0   100.0 61.0     100.0  
never_moves 28.0 0.7 1.1 1.9 100.0 0.0 0.0 0.8 0.0 0.0 100.0 0.0 100.0 1.9 0.0 0.0 9.2 0.0 0.0 0.0 0.0 18.0 0.0 100.0 0.0 0.0 0.0 100.0 0.0 0.0 2.3 100.0
moves_randomly 8.8 1.9 2.3 3.1 3.2 2.4 3.1 2.6 1.2 1.4 4.3 3.4 2.3 21.7 4.9 6.3 21.7 2.8 2.1 10.7 2.6 37.5 5.2 4.9 5.3 1.3 3.8 11.2 3.4 0.5 15.9 7.7



WINNERS

  • Honorable Mention - Evader Algorithm: Parker Haynes, Hui Li
  • Honorable Mention - Pursuer Algorithm: Jie Hu, Aron Pfeffer
  • Honorable Mention - New Graph: Andrew Faulds, Lydia Nevin, Phil Watters

  • Best New Graph: Chris Celi

  • Best Evader Algorithm: Gerrett Diamond

  • Best Pursuer Algorithm: Preston Law

     
    First Design
    Computer's Choice 4-Hole
    Czech Farms