Metadata-Version: 2.3
Name: line-solver
Version: 3.0.3.8
Summary: Open source queueing theory solvers
License: BSD-3
Author: Giuliano Casale
Author-email: g.casale@imperial.ac.uk
Requires-Python: >=3.11
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: gpu
Provides-Extra: native
Requires-Dist: enum-tools (>=0.13.0,<0.14.0)
Requires-Dist: matplotlib (>=3.10.6,<4.0.0)
Requires-Dist: numpy (>=2.3.3,<3.0.0)
Requires-Dist: pandas (>=2.3.2,<3.0.0)
Requires-Dist: scipy (>=1.16.2,<2.0.0)
Requires-Dist: simpy (>=4.0.0,<5.0.0)
Requires-Dist: torch (>=2.0.0) ; extra == "native" or extra == "gpu"
Requires-Dist: websockets (>=12.0,<13.0)
Project-URL: Homepage, https://line-solver.sourceforge.net
Description-Content-Type: text/markdown

# LINE Solver for Python 
This folder includes the Python version of the [LINE solver](http://line-solver.sf.net).

## Installation
Requirements: Python 3.11 or later.

## Documentation
The Python syntax is nearly identical to the MATLAB one, see for example the scripts in the Python `examples/gettingstarted/` folder compared to the ones in the corresponding MATLAB `examples/gettingstarted/` folder.

A Python version of the [manual](https://line-solver.sourceforge.net/doc/LINE-python.pdf) is also available.

## Example
Solve a simple M/M/1 model with 50% utilization running: ```python3 mm1.py```. You should then get as output the following pandas DataFrame
```
    Station   JobClass   QLen  Util  RespT  ResidT  Tput
0  mySource     Class1    0.0   0.0    0.0     0.0   0.5
1   myQueue     Class1    1.0   0.5    2.0     2.0   0.5
```
Alternatively, you can open and run mm1.ipynb in Jupyter.

## Getting Started Examples
The `examples/gettingstarted/` folder contains tutorial examples demonstrating key LINE features.

## License
This package is released as open source under the [BSD-3 license](http://opensource.org/licenses/BSD-3-Clause).

