Try to solve PESP (Periodic Event Scheduling Problem) using sat solver.
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.
pesp-sat
(or pesp-sat.exe
for Windows).If you have Go installed on your system, you can install PESP-SAT directly:
go install github.com/ppvan/pesp-sat@latest
pesp-sat [global options] command [command options] [arguments...]
solve
, s
: Solve a PESP instance filebenmark
: Solve a PESP instance and output statisticsTo solve a PESP instance file:
$ pesp-sat solve data/simple/test3.txt
1;1
2;4
v0.1.0