Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Nov 6, 2023
1 parent b4eb983 commit a82fc66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/tutorials/linear/tips_and_tricks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ model = Model();
@constraint(model, x >= 1 * z)

# When `z = 0` the two constraints are equivalent to `0 <= x <= 0`. When `z = 1`,
# the two constraints are equivalennt to `1 <= x <= 2`.
# the two constraints are equivalent to `1 <= x <= 2`.

# ## Semi-integer variables

Expand All @@ -275,7 +275,7 @@ model = Model();
@constraint(model, x >= 5 * z)

# When `z = 0` the two constraints are equivalent to `0 <= x <= 0`. When `z = 1`,
# the two constraints are equivalennt to `5 <= x <= 10`.
# the two constraints are equivalent to `5 <= x <= 10`.

# ## Special Ordered Sets of Type 1

Expand Down

0 comments on commit a82fc66

Please sign in to comment.