Skip to main content

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.

Release files for mapfw 0.8.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for mapfw 0.8.0
File Size Uploaded
mapfw-0.8.0.tar.gz 6.8 kB Details

Release files / mapfw-0.8.0.tar.gz

Download URL mapfw-0.8.0.tar.gz
Size 6.8 kB
Tags Source
SHA-256 checksum
How to use checksums
3067b228c8f7bda4ff64f886969f3ad8f1fa84fbc475514f28981d2abf45460f
BLAKE2b-256 checksum
How to use checksums
096d17444fc9fc81a5920b0a6cc0478d6aa6b8309f99bcb1b95f3d920038f68d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.3

Release history Release notifications | RSS feed

This release

0.8.0 This release

1 release file

0.7.0

1 release file

0.6.4

1 release file

0.6.3

1 release file

0.6.2

1 release file

0.6.1

1 release file

0.6.0

1 release file

0.5.1

1 release file

0.5.0

1 release file

0.4.5

1 release file

0.4.4

1 release file

0.4.3

1 release file

0.4.2

1 release file

0.4.1

1 release file

0.4.0

1 release file

0.3.2

1 release file

0.3.1

1 release file

0.3.0

1 release file

0.2.3

1 release file

0.2.2

1 release file

0.2.1

1 release file

0.2.0

1 release file

0.1.5

1 release file

0.1.4

1 release file

0.1.3

1 release file

0.1.2

1 release file

0.1.1

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page