Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify usage of add_to_expression! in docs #3859

Merged
merged 7 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions docs/src/manual/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,32 @@ julia> add_to_expression!(ex, 1.0, y)
2 x + y - 1
```

This is a efficient way to combine previously created expressions.
joaquimg marked this conversation as resolved.
Show resolved Hide resolved

```jldoctest
julia> model = Model();

julia> @variable(model, x[1:2])
2-element Vector{VariableRef}:
x[1]
x[2]

julia> ex1 = @expression(model, sum(x[1:2]))
x[1] + x[2]

julia> ex2 = @expression(model, 2 * sum(x[1:2]))
2 x[1] + 2 x[2]

julia> add_to_expression!(ex1, ex2)
3 x[1] + 3 x[2]

julia> ex1
3 x[1] + 3 x[2]

julia> ex2
2 x[1] + 2 x[2]
```

!!! warning
Read the section [Initializing arrays](@ref) for some cases to be careful
about when using [`add_to_expression!`](@ref).
Expand Down
24 changes: 24 additions & 0 deletions src/aff_expr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,30 @@ julia> add_to_expression!(expr, 3, x)
julia> expr
4 x + 2
```

```jldoctest
julia> model = Model();

julia> @variable(model, x[1:2])
2-element Vector{VariableRef}:
x[1]
x[2]

julia> ex1 = @expression(model, sum(x[1:2]))
x[1] + x[2]

julia> ex2 = @expression(model, 2 * sum(x[1:2]))
2 x[1] + 2 x[2]

julia> add_to_expression!(ex1, ex2)
3 x[1] + 3 x[2]

julia> ex1
3 x[1] + 3 x[2]

julia> ex2
2 x[1] + 2 x[2]
```
"""
function add_to_expression! end

Expand Down
Loading