Skip to main content

BMSSPy

PyPI version License: MIT

A pure python bmssp implementation.

Setup

Make sure you have Python 3.11.x (or higher) installed on your system. You can download it here.

Installation

pip install bmsspy

Documentation

How to Cite BMSSPy in your Research

If you use BMSSPy for your research, please consider citing the following paper:

Makowski, Connor and Guter, Willem and Russell, Tim and Saragih, Austin, BMSSPy: A Python Package and Empirical Comparison of Bounded Multi-Source Shortest Path Algorithm (November 19, 2025). MIT Center for Transportation & Logistics Research Paper No. 2025/034, Available at SSRN: https://ssrn.com/abstract=5777186

Or by using the BibTeX entry:

@article{makowski2025bmsspy,
  title={BMSSPy: A Python Package and Empirical Comparison of Bounded Multi-Source Shortest Path Algorithm},
  author={Makowski, Connor and Guter, Willem and Russell, Tim and Saragih, Austin},
  journal={MIT Center for Transportation & Logistics Research Paper Series},
  number={2025-034},
  year={2025},
  url={https://ssrn.com/abstract=5777186}
}

Use

The example use cases in this section are based on the following graph:

readme_graph

from bmsspy import Bmssp

# Graph with 5 nodes: 0..4
# Adjacency-list representation with nonnegative weights
graph = [
    {1: 1, 2: 1},   # 0 -> 1 (1), 0 -> 2 (1)
    {2: 1, 3: 3},   # 1 -> 2 (1), 1 -> 3 (3)
    {3: 1, 4: 2},   # 2 -> 3 (1), 2 -> 4 (2)
    {4: 2},         # 3 -> 4 (2)
    {}              # 4 has no outgoing edges
]

bmssp_graph = Bmssp(graph) # Initialize the graph as a Bmssp graph

# Distances and predecessors from origin 0
res_0 = bmssp_graph.solve(origin_id=0)
print(res_0) #=>
# {
#     'origin_id': 0,
#     'destination_id': None,
#     'predecessor': [-1, 0, 0, 2, 2],
#     'distance_matrix': [0.0, 1.0, 1.0, 2.0, 3.0],
#     'path': None,
#     'length': None
# }

# Shortest path from 0 to 4
res_0_4 = bmssp_graph.solve(origin_id=0, destination_id=4)
print(res_0_4) #=>
# {
#     'origin_id': 0,
#     'destination_id': 4,
#     'predecessor': [-1, 0, 0, 2, 2],
#     'distance_matrix': [0.0, 1.0, 1.0, 2.0, 3.0],
#     'path': [0, 2, 4],
#     'length': 3
# }

In the example above, we only use a single orign, however multiple origins are supported if passed as a set:

# Pass orgin_id as a set of ids
res_02 = bmssp_graph.solve(origin_id={0,2})
print(res_02) #=>
# {
#     'origin_id': [0, 2],
#     'destination_id': None,
#     'predecessor': [-1, 0, -1, 2, 2],
#     'distance_matrix': [0.0, 1.0, 0.0, 1.0, 2.0],
#     'path': None,
#     'length': None
# }

By default graphs that are given are converted to constant degree such that worst case asymtotic run times are based on the constant degree converted graphs. Before returning a result, the constant degree conversion is undone such that the results are in the original passed graph format.

Most real world graphs are not constant degree. Converting to constant degree graphs can add substantial operational overhead during pre and post processing as well as during the actual algorithmic runtime.

To skip the constant degree conversion:

# Set use_constant_degree_graph=False
bmssp_graph = Bmssp(graph=graph, use_constant_degree_graph=False)

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Development

To avoid extra development overhead, we expect all developers to use a unix based environment (Linux or Mac). If you use Windows, please use WSL2.

For development, we use uv to manage dependencies and run tests.

Making Changes

  1. Fork the repo and clone it locally.
  2. Make your modifications.
  3. Run tests and make sure they pass.
  4. Prettify your code.
  5. DO NOT GENERATE DOCS.
    • We will generate the docs and update the version number when we are ready to release a new version.
  6. Only commit relevant changes and add clear commit messages.
    • Atomic commits are preferred.
  7. Submit a pull request.

Development Commands

Command What it does
uv run nox Run tests across Python 3.11, 3.12, 3.13, 3.14
uv run nox -s tests-3.14 Run tests on a single Python version
uv run pytest Run tests in the local venv
uv run pytest -v Run tests with verbose output
uv run python utils/prettify.py Format with autoflake + black

Dev dependencies are in [project.optional-dependencies] dev in pyproject.toml. Install with uv sync --extra dev.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bmsspy-2.2.2.tar.gz (42.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bmsspy-2.2.2-py3-none-any.whl (37.1 kB view details)

Uploaded Python 3

File details

Details for the file bmsspy-2.2.2.tar.gz.

File metadata

  • Download URL: bmsspy-2.2.2.tar.gz
  • Upload date:
  • Size: 42.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.5

File hashes

Hashes for bmsspy-2.2.2.tar.gz
Algorithm Hash digest
SHA256 c884aa4a29746de9b03f7a771c87230ea5fc4a2269cb1407c6837d39ee58cf4c
MD5 aa5a3010b91fc03de2bc347eb3008bac
BLAKE2b-256 2d96cbc6bb913b5d2b19b8c83556ff677378e33e9e636d46cc6d6da1163f6796

See more details on using hashes here.

File details

Details for the file bmsspy-2.2.2-py3-none-any.whl.

File metadata

  • Download URL: bmsspy-2.2.2-py3-none-any.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.5

File hashes

Hashes for bmsspy-2.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a419ada1374aff8b929397ea11591ab4401cfc9a19144520bbc7b6545a8515c3
MD5 0568a1b35f39b486820c746d765c7c93
BLAKE2b-256 addddcc38091c034074974dfd62dff5ec93f43335a73704408a349a0f0c56b03

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page