Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoladicicco committed Aug 21, 2024
1 parent 8c2749a commit a629f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/constraints/circuit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Global constraint ensuring that the values of `x` form a circuit, i.e., a sequen
"""
xcsp_circuit(; list, size)
Return `true` if the circuit constraint is satisfied, `false` otherwise. The circuit constraint is a global constraint ensuring that the values of a list of variables form a circuit, i.e., a sequence where each value is the index of the next value in the sequence, and the sequence eventually loops back to the start.
Return `true` if the circuit constraint is satisfied, `false` otherwise. The circuit constraint is a global constraint ensuring that the values of `x` form a circuit, i.e., a sequence where each value is the index of the next value in the sequence, and the sequence eventually loops back to the start.
## Arguments
- `list::AbstractVector`: list of values to check.
Expand Down
2 changes: 1 addition & 1 deletion src/constraints/minimum.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const description_minimum = """
Global constraint specifying that a certain numerical condition should hold for the minimum value in `x`.
Global constraint ensuring that a certain numerical condition holds for the minimum value in `x`.
"""

"""
Expand Down

0 comments on commit a629f15

Please sign in to comment.