Skip to content

noahiscool13/mapfw-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MAPFW Client

This is a client library for the https://mapfw.nl/ MAPFW problems

The MAPFW problem

MAPFW is an abbreviation of "Multi-agent pathfinding (with) waypoints". With MAPFW problems, you are given:

  • A grid/maze
  • A list of agent starting positions
  • A list of agent goal positions
  • A list of agent waypoints

The solution for that problem is a list of paths, one for each agent st.

  • Each path starts on the starting position of the corresponding agent
  • Each path ends on the goal position of the corresponding agent
  • Each path crosses all waypoints of the corresponding agent
  • No path crosses a wall in the grid
  • No 2 agents are ever on the same position at the same time
  • No 2 agents ever cross the same edge (in opposite directions) at the same time This solution is optimal if there is no other solution st. the sum of the lengths of the paths of all the agents is smaller than the this solution.

Using the client library

Install the library with:

pip install mapfw

Then go to https://mapfw.nl/benchmarks/. Here you can find a list of benchmarks. If you click on a benchmark you can see prefiously posted solutions. By clicking on a solution, You can see what the problem looks like. Find a problem that you like, and find its index on the https://mapfw.nl/benchmarks/ page (Sorry, you will have to count yourself, starting from 1. This will change later).

Now go to your account page at https://mapfw.nl/auth/account. To find your API Token

This is all the info you need to start coding. The basic outline of your code should look like this:

from mapfw import MapfwBenchmarker
if __name__ == '__main__':
    benchmarker = MapfwBenchmarker("<YOUR API TOKEN>", <BENCHMARK INDEX>, "<YOUR ALGORITHMS NAME>",
                                   "<YOUR ALGORITHMS VERSION>", <DEBUG_MODE>, solver=<SOLVER>,cores=<CORES>)
    benchmarker.run()

The only things that you need to do are to fill in

  • Your own API Token
  • The number of the benchmark that you want to solve
  • The name of your algorithm
  • Its version. And the debug mode. (This should be set to True while you are developing your algorithm. This means that your attempts will not be shown on the global leader boards. You can however still see your own solution at https://mapfw.nl/auth/latest-debug.)
  • Your solver function
  • The amount of cores that you want to use for this benchmark (Default=1. For all cores, use -1)

You should implement the "solver" function yourself. This function should take in a problem and return the solution. A basic outline of this function can be as follows:

class Agent:
    def __init__(self, start, goal, waypoints):
        self.start = start
        self.goal = goal
        self.waypoints = waypoints


class Maze:
    def __init__(self, grid, width, height):
        self.grid = grid
        self.width = width
        self.height = height


def solve(problem):
    number_of_agents = len(problem.starts)
    agents = []
    for i in range(number_of_agents):
        agents.append(Agent(problem.starts[i], problem.starts[i], problem.goals[i], problem.waypoints[i]))
    maze = Maze(problem.grid, problem.width, problem.height)

    paths = []
    for agent in agents:
        paths.append(find_path(agent, maze))

    """
    Now paths looks like:
    
    paths = [path agent 1, path agent 2, ..]
    path agent 1 = [pos agent 1 at time 0, pos agent 1 at time 1, .., pos agent 1 at finishing time]
    pos = [x coordinate, y coordinate]
    """

    return paths

It is also possible to run multiple benchmarks at the same time. Instead of giving an integer as the benchmark index, you can also give an iterable to the MapfwBenchmarker constructor. Valid uses are:

Run benchmark 3, with solver solve, with algorithm TestAlgorithm and version TestVersion, in debug on 1 core:

MapfwBenchmarker("<YOUR API TOKEN>", 3, "TestAlgotithm",
                    "TestVersion", True, solver=solve,cores=1)

Run benchmark 1,2 and 3, with solver solve, with algorithm TestAlgorithm and version TestVersion, in debug on 3 cores:

MapfwBenchmarker("<YOUR API TOKEN>", [1,2,3], "TestAlgotithm",
                    "TestVersion", True, solver=solve,cores=3)

Run benchmark 1,2, and 3, with solver solve, with algorithm TestAlgorithm and version TestVersion, as a real attempt on all cores:

MapfwBenchmarker("<YOUR API TOKEN>", range(1,4), "TestAlgotithm",
                    "TestVersion", False, solver=solve,cores=-1)

If you want a list of all the indexes of the benchmarks, that is possible with the get_all_benchmarks function. As an argument you can add the index, or a list of indexes of benchmarks that you dont want to run

from mapfw import get_all_benchmarks
all_benchmarks = get_all_benchmarks()
without_benchmark_3 = get_all_benchmarks(without=3)
without_benchmark_2_and_4 = get_all_benchmarks(without=[2,4])

When your are ready, set the debug mode to False. The next time you run your code, your attempt will be publicly listed.

This should be all that you need to know to get started! Please note that this is just some example code and feel free to change it however you like.

Good luck! And let us know if you have any questions.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages