Skip to content

Commit 0ced47f

Browse files
committedApr 17, 2023
feat: Add warning for using optimal path
1 parent 1629de7 commit 0ced47f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/opt.jl

+2
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,8 @@ julia> xs, nonzeros, profits = AllocationOpt.optimize(
265265
```
266266
"""
267267
function optimize(::Val{:optimal}, Ω, ψ, σ, K, Φ, Ψ, g)
268+
@warn "This uses the pairwise greedy algorithm, which is currently experimental."
269+
268270
# Helper function to compute profit
269271
obj = x -> profit.(indexingreward.(x, Ω, ψ, Φ, Ψ), g) |> sum
270272

0 commit comments

Comments
 (0)
Please sign in to comment.