PESP SAT
Try to solve PESP (Periodic Event Scheduling Problem) using sat solver.
Description
Pesp SAT is a command-line tool designed to solve and benchmark instances of the Periodic Event Scheduling Problem (PESP) using SAT (Boolean Satisfiability) techniques.
Installation
Option 1: Download pre-compiled binary
- Go to the Releases page.
- Download the appropriate binary for your operating system and architecture.
- Rename the binary to
pesp-sat (or pesp-sat.exe for Windows).
- Move the binary to a directory in your system's PATH.
Option 2: Install using Go
If you have Go installed on your system, you can install PESP-SAT directly:
go install github.com/ppvan/pesp-sat@latest
Usage
pesp-sat [global options] command [command options] [arguments...]
Commands:
solve, s: Solve a PESP instance file
benmark: Solve a PESP instance and output statistics
Global Options:
Examples
To solve a PESP instance file:
$ pesp-sat solve data/simple/test3.txt
1;1
2;4
Version
v0.1.0