Skip to content

Conversation

odow
Copy link
Member

@odow odow commented Sep 12, 2025

Before

julia> import MathOptInterface as MOI

julia> function main()
           model = MOI.FileFormats.LP.Model{Float64}()
           MOI.read_from_file(model, "/Users/odow/Downloads/QPLIB_10005.lp")
           return model
       end
main (generic function with 1 method)

julia> @time main();
  1.065072 seconds (43.71 M allocations: 1.511 GiB, 22.66% gc time)

After

julia> import MathOptInterface as MOI

julia> function main()
           model = MOI.FileFormats.LP.Model{Float64}()
           MOI.read_from_file(model, "/Users/odow/Downloads/QPLIB_10005.lp")
           return model
       end
main (generic function with 1 method)

julia> @time main();
  1.062581 seconds (30.88 M allocations: 1.156 GiB, 19.92% gc time)

@odow odow merged commit b845d44 into master Sep 13, 2025
31 checks passed
@odow odow deleted the od/lowercase branch September 13, 2025 00:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

1 participant