File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -289,14 +289,14 @@ using Preferences
289289 prob_other = LinearProblem (A_other, b_other)
290290 sol_other = solve (prob_other)
291291 @test sol_other. retcode == ReturnCode. Success
292- @test norm (A_other * sol_other. u - b_other) < (other_size <= 10 ? 1e-12 : 1e-8 )
292+ @test norm (A_other * sol_other. u - b_other) < (other_size <= 10 ? 1e-12 : 1e-6 )
293293 end
294294
295295 # Test that RFLU size problem solves
296296 prob_rflu = LinearProblem (A_rflu, b_rflu)
297297 sol_rflu = solve (prob_rflu)
298298 @test sol_rflu. retcode == ReturnCode. Success
299- @test norm (A_rflu * sol_rflu. u - b_rflu) < (rflu_size <= 10 ? 1e-12 : 1e-8 )
299+ @test norm (A_rflu * sol_rflu. u - b_rflu) < (rflu_size <= 10 ? 1e-12 : 1e-6 )
300300 end
301301 end
302302
You can’t perform that action at this time.
0 commit comments