Skip to content

Commit de96bf0

Browse files
authored
Merge pull request #77 from JuliaConstraints/doc
Update doc for JuliaConstraints website
2 parents 4e77f88 + 68d6caf commit de96bf0

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ jobs:
5050
fail-fast: false
5151
matrix:
5252
version:
53-
- "1.9"
5453
- "1" # automatically expands to the latest stable 1.x release of Julia
5554
- "pre"
5655
os:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ OrderedCollections = "1"
2424
Random = "1"
2525
TestItems = "0.1, 1"
2626
Unrolled = "0.1"
27-
julia = "1.9"
27+
julia = "1.10"
2828

2929
[extras]
3030
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

src/layers/comparison.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ co_vars_minus_var(x; nvars, params...) = co_val_minus_var(x; val = nvars)
5858

5959

6060
# Parametric layers
61+
"""
62+
make_comparisons(param::Symbol)
63+
64+
Generate the comparison functions for the given parameter.
65+
"""
6166
make_comparisons(param::Symbol) = make_comparisons(Val(param))
6267

6368
function make_comparisons(::Val{:none})

src/utils.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ end
9696
9797
Application of an operation from the transformation layer. Used to generate more efficient code for all compositions.
9898
"""
99+
function tr_in end
100+
99101
@unroll function tr_in(tr, X, x; params...)
100102
@unroll for i = 1:length(tr)
101103
tr[i](x, @view(X[:, i]); params...)

0 commit comments

Comments
 (0)