Skip to content

Commit

Permalink
Fix syntax of lines in STARTING_POINT (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored May 19, 2024
1 parent 2ac765b commit 4a2f23f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.jl
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ function write_bar_file(m::BaronModel)
println(fp, "STARTING_POINT{")
for var in m.variable_info
if var.start !== nothing
println(fp, "$(var.name): $(var.start)")
println(fp, "$(var.name): $(var.start);")
end
end
println(fp, "}")
Expand Down

0 comments on commit 4a2f23f

Please sign in to comment.