Skip to content

Commit 18f5eef

Browse files
committed
80 Character Edit
1 parent 81e17fa commit 18f5eef

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/variables.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,8 +469,10 @@ Returns a JuMP variable created in `model` using the properties specified in `pr
469469
This function applies all variable attributes from the `VariableProperties` object
470470
including binary/integer constraints, bounds, fixed values, and start values.
471471
"""
472-
function _variable_from_properties(model::JuMP.AbstractModel, props::VariableProperties)
473-
var = @variable(model, base_name = props.name)
472+
function _variable_from_properties(
473+
model::JuMP.AbstractModel, props::VariableProperties)
474+
var = @variable(model, base_name = props.name
475+
)
474476

475477
if props.is_binary
476478
set_binary(var)

0 commit comments

Comments
 (0)