Functional and lazy mini-framework for local search on combinatorial problems
Project description
PyGrates
A functional and lazy mini-framework for local search on combinatorial problems.
About
PyGrates arose out of a research project to explore switching actions in a power grid, or generally, alterations to the topology of a graph: Python for Graph Topology Enumerations. The space of changes to a graph inductively defines a graph of graphs, usually exponentially large and possibly infinite. Besides the specific types of possible changes, which are manifold and not included here, this package defines an interface for their lazy enumeration and filtering.
The goal is general usability for local search on combinatorial problems: rerouting or rescheduling problems, games, or anything with a discrete space of states where the path of intermediate states is relevant. Three features are especially important for this:
- A protocol for user-defined state representations with custom logic for enumerating neighboring states, which can be arbitrarily complex and tailored to the problem.
- Lazy enumeration functions, making heavy use of Python's iterator protocol, to be able to pass around objects that logically represent a very large or infinite number of states without evaluating or storing more than necessary.
- User-defined filter functions, representing constraints or heuristics, that are applied at intermediate stages of iteration to be able to prune the space of solutions as early as possible.
Documentation
The documentation is hosted at https://pygrates.readthedocs.io.
Install
The package is available from PyPI:
pip install pygrates
Short Example
First, import the package. This example also uses the dataclasses.dataclass
decorator from the standard library:
>>> import pygrates as pg
>>> from dataclasses import dataclass
To use the library functions, you need to create a class of coordinates that
implements one of the abstract base classes from the pygrates.abc
submodule.
An instance of this class represents the state of your combinatorial problem.
Your implementation provides the logic for iterating over neighboring states in
one or more directions.
Here, we implement a coordinate class that behaves like a directed graph:
pygrates.abc.DGCoords
, with a children
and a parents
direction. For the
sake of example, the coordinates will simply lie on a two-dimensional grid,
with the children of a point lying towards the positive x and y directions,
and the parents towards the negative x and y directions:
>>> @dataclass(frozen=True)
... class Point2D(pg.abc.DGCoords):
... x: int
... y: int
...
... def children(self):
... return Point2D(self.x + 1, self.y), Point2D(self.x, self.y + 1)
...
... def parents(self):
... return Point2D(self.x - 1, self.y), Point2D(self.x, self.y - 1)
If we now call one of the functions from pygrates.moves
on an instance of
our coordinate class, we get a lazy iterator with coordinates from one or more
directions, up to a certain depth:
>>> coords = pg.descendants(Point2D(0, 0), depth=2)
>>> set(coords) == {Point2D(x=1, y=0), Point2D(x=0, y=1),
... Point2D(x=2, y=0), Point2D(x=0, y=2),
... Point2D(x=1, y=1)}
True
We can also pass a guard function to the functions in pygrates.moves
to
filter out coordinates during iteration. Such a function maps from a coordinate
instance to a boolean, and is applied before subsequent layers of search:
>>> coords = pg.neighborhood(Point2D(0, 0), 3, lambda p: p.y % 2 == 0)
>>> set(coords) == {Point2D(x=-3, y=0), Point2D(x=-2, y=0),
... Point2D(x=-1, y=0), Point2D(x=1, y=0),
... Point2D(x=2, y=0), Point2D(x=3, y=0)}
True
Here, we obtain the coordinates on the line y=0, excluding our input coordinate. Some coordinates on the lines y=2 and y=-2 are within the specified depth of three moves, but are not reached because the coordinates it would take to get there are filtered out during iteration.
In real usage, the trivial Point2D
class defined above is replaced with a
problem-specific state representation: for example, the coordinate class could
have a field to store which lines have been taken out of service in a power
grid, and two corresponding direction methods could iterate which lines can
further be taken out of service and which lines can be put back in service.
In addition, there could be other fields and directions in the coordinate class
to represent the state space of the power grid as a whole.
Regardless of the problem, the iteration and filtering functions as shown above will work in the same way, providing a foundation for implementing search strategies.
License
PyGrates is distributed under the MIT license (see the LICENSE file):
Copyright 2022-2023 Koen van Walstijn
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pygrates-0.2.1.tar.gz
.
File metadata
- Download URL: pygrates-0.2.1.tar.gz
- Upload date:
- Size: 14.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2214950620a49f48e788106a00718d4fdad67e973c20e214d17b263bc965265 |
|
MD5 | c80a5ef6484bbc35922b44a3241f52ca |
|
BLAKE2b-256 | 04f98c2bb2f3cfdd433d91796626c2c823a2b9755dbb3e74ed506f72b3877a5e |
File details
Details for the file pygrates-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: pygrates-0.2.1-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b5e218a824baac7326b48c8c42af2e9a8f2102a7a3bf103824131b3c4080364 |
|
MD5 | 105475811f3058d364be20ef41dfee84 |
|
BLAKE2b-256 | 39f4c73d137f74015b31eb446e69399534e94baf0305342e6b76b4f6c299f868 |