Skip to main content

DOI

Algmatch

Algmatch contains implementations of polynomial-time algorithms for matching problems. The full list of support problem is as follow:

  • SM: Stable Marriage
  • HR: Hospital/Residents
    • Resident-optimal algorithm and hospital-optimal algorithm
  • SPA-S: Student Project Allocation with lecturer preferences over students
    • Student-optimal algorithm and lecturer-optimal algorithm
  • SPA-P: Student Project Allocation with lecturer preferences over projects (requires Gurobi)
    • for usage, see this notebook.
  • SR: Stable Roommates
  • SMT: Strong and Super-stable matchings in Stable Marriage with Ties
  • HRT: Hospital/Residents with Ties
    • Strong: Resident-optimal algorithm and hospital-optimal algorithm for strong stability
    • Super: Resident-optimal algorithm and hospital-optimal algorithm for super-stability
  • SPA-ST: Student Project Allocation with lecturer preferences over students and ties
    • Super: Student-optimal algorithm
    • There are no published lecturer-optimal algorithm for super-stability or any published algorithm for strong stability exists at this time.

Requires Python 3.10 or later.

Format data according to the guidelines in this folder.

Installation

Simply run pip install algmatch.

Usage

To import a specific algorithm, use from algmatch import <algorithm>, e.g. from algmatch import SPAS or from algmatch import StudentProjectAllocation. Create a file or dictionary with your instance, following the guidelines in the DATA_FORMAT_GUIDELINES folder. For example,

Importing data:

from algmatch import HR, SM, SPAS

spas_instance = {
    'students': {
        1: [1, 2],
        2: [2, 3],
        3: [3, 1],
        4: [4, 1]
    },
    'projects': {
        1: {
            'capacity': 1,
            'lecturer': 1
        },
        2: {
            'capacity': 1,
            'lecturer': 1
        },
        3: {
            'capacity': 1,
            'lecturer': 2
        },
        4: {
            'capacity': 1,
            'lecturer': 2
        }
    },
    'lecturers': {
        1: {
            'capacity': 2,
            'preferences': [3, 1, 2, 4]
        },
        2: {
            'capacity': 2,
            'preferences': [2, 4, 3]
        }
    }
}

spas_student = SPAS(dictionary=spas_instance, optimised_side="students")
spas_lecturer = SPAS(dictionary=spas_instance, optimised_side="lecturers")

Getting the stable matchings:

spas_2_student_stable_matching = spas_2_student.get_stable_matching()
spas_2_lecturer_stable_matching = spas_2_lecturer.get_stable_matching()

print("SPA 2 student stable matching:"
print(spas_2_student_stable_matching)

print("SPA 2 lecturer stable matching:")
print(spas_2_lecturer_stable_matching)
Student-optimal stable matching:
{'student_sided': {'s1': 'p1', 's2': 'p2', 's3': 'p3', 's4': 'p4'}, 'lecturer_sided': {'l1': ['s1', 's2'], 'l2': ['s3', 's4']}}
Lecturer-optimal stable matching:
{'student_sided': {'s1': 'p2', 's2': 'p3', 's3': 'p1', 's4': 'p4'}, 'lecturer_sided': {'l1': ['s1', 's3'], 'l2': ['s2', 's4']}}

See more example usage here.

Further details

  • All algorithms implemented (barring SPA-P) have verification testing
    • Tested by producing random instances
    • Brute force all stable matchings
    • Check algorithm is generating correct stable matchings

Download files

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

Source Distribution

algmatch-1.5.2.tar.gz (71.0 kB view details)

Uploaded Source

Built Distribution

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

algmatch-1.5.2-py3-none-any.whl (122.4 kB view details)

Uploaded Python 3

File details

Details for the file algmatch-1.5.2.tar.gz.

File metadata

  • Download URL: algmatch-1.5.2.tar.gz
  • Upload date:
  • Size: 71.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for algmatch-1.5.2.tar.gz
Algorithm Hash digest
SHA256 7e3d56baf29f92de99a54c29a7e6575a631d433026e34d6e182f28b48205e15e
MD5 616e744ff931b11adbce92591046c14b
BLAKE2b-256 7f9ba8155ded8ad4ae259cd4e78d9ba65344c39ae937acabd3cb1502b19906ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for algmatch-1.5.2.tar.gz:

Publisher: python-publish.yml on BenOnTheBoard/algmatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file algmatch-1.5.2-py3-none-any.whl.

File metadata

  • Download URL: algmatch-1.5.2-py3-none-any.whl
  • Upload date:
  • Size: 122.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for algmatch-1.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 bfe4837e9115a04031a32adb4d593be12a01243098bdb4902c9b8dfece8ecf02
MD5 61c63d86979830f3ba42ed45ac6239d1
BLAKE2b-256 73cb267b17b8342c72ea3d6d8cde57225b801363986e43f101268b09578d3a72

See more details on using hashes here.

Provenance

The following attestation bundles were made for algmatch-1.5.2-py3-none-any.whl:

Publisher: python-publish.yml on BenOnTheBoard/algmatch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.5.2 This release

2 files

1.5.0

2 files

1.4.0

2 files

1.3.0

2 files

1.2.0

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

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