Metadata-Version: 2.4
Name: potassco-fastlane
Version: 6.0.1
Summary: A Framework for Answer Set Programming-based Large Neighborhood Search.
Author: Tom Schmidt
License: MIT License
        
        Copyright (c) 2024 Tom Schmidt
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: importlib_metadata; python_version < "3.12"
Requires-Dist: clingo>=5.8.0
Requires-Dist: clingo-dl>=1.5.0
Requires-Dist: clingcon>=5.2.1
Provides-Extra: format
Requires-Dist: black; extra == "format"
Requires-Dist: isort; extra == "format"
Requires-Dist: autoflake; extra == "format"
Provides-Extra: lint-pylint
Requires-Dist: pylint; extra == "lint-pylint"
Provides-Extra: typecheck
Requires-Dist: types-setuptools; extra == "typecheck"
Requires-Dist: mypy; extra == "typecheck"
Provides-Extra: test
Requires-Dist: coverage[toml]; extra == "test"
Provides-Extra: doc
Requires-Dist: zensical; extra == "doc"
Requires-Dist: mkdocstrings-python; extra == "doc"
Provides-Extra: dev
Requires-Dist: fastlane[lint_pylint,test,typecheck]; extra == "dev"
Provides-Extra: full
Requires-Dist: fastlane[doc]; extra == "full"
Dynamic: license-file

# FASTLANE: A Framework for Answer Set Programming-based Large Neighborhood Search

The goal of this project is to implement an extensive and easily modifiable
implementation of LNS using the tools of [potassco](https://potassco.org/).

## Installation

The framework can be installed with any Python version newer than 3.12
using pip:

```bash
pip install potassco-fastlane
```

To access the latest updates and fixes you can either use:

```bash
pip install git+https://github.com/potassco/fastlane
```

Or alternatively build the tool yourself, which requires the `setuptools`
package. We recommend using conda, which includes `setuptools` in its default
Python installation. To build the tool manually run the following commands:

```bash
git clone https://github.com/potassco/fastlane
cd fastlane
conda create -n <env-name> python=3.14
conda activate <env-name>
pip install .
```

## Documentation

The documentation can be accessed [here](https://docs.potassco.org/fastlane/)
or build and hosted using:

```bash
$ pip install .[doc]
$ zensical serve
```

## Usage

You can check a successful installation by running

```bash
$ fastlane -h
```
