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 5b0d14a commit cae77f7Copy full SHA for cae77f7
test/reduction.jl
@@ -88,10 +88,10 @@ test_equal.(equations(aliased_flattened_system), [
88
D(lorenz2.y) ~ lorenz2.x*(lorenz2.ρ-lorenz2.z)-lorenz2.x,
89
D(lorenz2.z) ~ lorenz2.x*lorenz2.y - lorenz2.β*lorenz2.z])
90
91
-#=
92
-observed(aliased_flattened_system) == [
93
- lorenz1.F ~ lorenz2.u
94
- lorenz2.F ~ lorenz1.u
95
- a ~ -lorenz1.x + lorenz2.y
96
-]
97
-=#
+test_equal.(observed(aliased_flattened_system), [
+ lorenz1.F ~ lorenz2.x + -1 * (lorenz2.y + lorenz2.z),
+ lorenz1.u ~ lorenz1.x + lorenz1.y + -1 * lorenz1.z,
+ lorenz2.F ~ lorenz1.x + lorenz1.y + -1 * lorenz1.z,
+ a ~ lorenz2.y + -1 * lorenz1.x,
+ lorenz2.u ~ lorenz2.x + -1 * (lorenz2.y + lorenz2.z),
+])
0 commit comments