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 93cd547 commit b7bbac7Copy full SHA for b7bbac7
Project.toml
@@ -1,6 +1,6 @@
1
name = "FiniteDifferences"
2
uuid = "26cc04aa-876d-5657-8c51-4c34ba976000"
3
-version = "0.12.25"
+version = "0.12.26"
4
5
[deps]
6
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
test/to_vec.jl
@@ -153,7 +153,7 @@ end
153
@test all(!isnan, F_vec)
154
@inferred back(F_vec)
155
F_back = back(F_vec)
156
- @test F_back.Q == F.Q
+ @test Matrix(F_back.Q) == Matrix(F.Q)
157
@test F_back.R == F.R
158
159
# Make sure the result is consistent despite the arbitrary
@@ -171,7 +171,7 @@ end
171
@test all(!isnan, Q_vec)
172
@inferred back(Q_vec)
173
Q_back = back(Q_vec)
174
- @test Q_back == Q
+ @test Matrix(Q_back) == Matrix(Q)
175
end
176
177
0 commit comments