We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d23e5 commit 1290d5eCopy full SHA for 1290d5e
test/Bridges/lazy_bridge_optimizer.jl
@@ -722,9 +722,7 @@ function _test_SDPA_debug(T)
722
model = StandardSDPAModel{T}()
723
bridged = MOI.Bridges.LazyBridgeOptimizer(model)
724
function debug_string(f, args...)
725
- s = IOBuffer()
726
- f(bridged, args...; io = s)
727
- return String(resize!(s.data, s.size))
+ return sprint(io -> f(bridged, args...; io = io))
728
end
729
@testset "LessThan variables" begin
730
S = MOI.LessThan{T}
0 commit comments