Skip to content

Commit

Permalink
Add solver description to CPSolver class
Browse files Browse the repository at this point in the history
  • Loading branch information
Pabloo22 committed Feb 21, 2024
1 parent e2bc6c7 commit 2d93da9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions job_shop_lib/solvers/cp_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@


class CPSolver:
"""A solver for the job shop scheduling problem using constraint
programming.
This solver uses the ortools library to solve the job shop scheduling
problem using constraint programming.
"""

def __init__(
self,
time_limit: Optional[float] = None,
Expand Down

0 comments on commit 2d93da9

Please sign in to comment.