Skip to content

Commit

Permalink
add file headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Wout4 committed Jul 18, 2024
1 parent 4da121b commit eee8488
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cpmpy/transformations/decompose_global.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""
Decompose any global constraint not supported by the solver.
"""

import copy
import warnings # for deprecation warning

Expand Down
3 changes: 3 additions & 0 deletions cpmpy/transformations/negation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""
Transformations dealing with negations.
"""
import copy
import warnings # for deprecation warning
import numpy as np
Expand Down
4 changes: 4 additions & 0 deletions cpmpy/transformations/normalize.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""
Normalizing the constraints given to a CPMpy model.
"""

import copy

import numpy as np
Expand Down

0 comments on commit eee8488

Please sign in to comment.