File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ This section lists changes that do not have deprecation warnings.
73
73
longer present. Use ` first(R) ` and ` last(R) ` to obtain
74
74
start/stop. ([ #20974 ] )
75
75
76
+ * ` isapprox(x,y) ` now tests ` norm(x-y) <= max(atol, rtol*max(norm(x), norm(y))) `
77
+ rather than ` norm(x-y) <= atol + ... ` ([ #22742 ] ).
78
+
76
79
* The ` Diagonal ` type definition has changed from ` Diagonal{T} ` to
77
80
` Diagonal{T,V<:AbstractVector{T}} ` ([ #22718 ] ).
78
81
@@ -132,9 +135,6 @@ Library improvements
132
135
* ` @test isequal(x, y) ` and ` @test isapprox(x, y) ` now prints an evaluated expression when
133
136
the test fails ([ #22296 ] ).
134
137
135
- * ` isapprox(x,y) ` now tests ` norm(x-y) <= max(atol, rtol*max(norm(x), norm(y))) `
136
- rather than ` norm(x-y) <= atol + ... ` .
137
-
138
138
* Uses of ` Val{c} ` in ` Base ` has been replaced with ` Val{c}() ` , which is now easily
139
139
accessible via the ` @pure ` constructor ` Val(c) ` . Functions are defined as
140
140
` f(::Val{c}) = ... ` and called by ` f(Val(c)) ` . Notable affected functions include:
You can’t perform that action at this time.
0 commit comments