Skip to content

Commit

Permalink
Reorder types in multiple precision
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsiqueira committed Jan 25, 2019
1 parent 62cd803 commit e73d9e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/multiple-precision.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
function multiple_precision()
@testset "Test multiple precision models" begin
for T = [Float64, Float32, Float16, BigFloat]
for T = [Float16, Float32, Float64, BigFloat]
nlp = ADNLPModel(x->sum(x.^4), ones(T, 2),
c=x->[x[1]^2 + x[2]^2 - 1; x[1] * x[2]],
lcon=zeros(T, 2), ucon=zeros(T, 2))
Expand Down

0 comments on commit e73d9e3

Please sign in to comment.