Skip to content

Commit 3fc5d4b

Browse files
Fix sign in Nose-Hoover Jacobian (#145)
* Fix sign in Nose-Hoover Jacobian * Increment patch number
1 parent 5a2b67a commit 3fc5d4b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DynamicalSystemsBase"
22
uuid = "6e36e845-645a-534a-86f2-f5d4aa5a06b4"
33
repo = "https://github.com/JuliaDynamics/DynamicalSystemsBase.jl.git"
4-
version = "2.7.0"
4+
version = "2.7.1"
55

66
[deps]
77
DelayEmbeddings = "5732040d-69e3-5649-938a-b6b4f237613f"

src/predefined/continuous_famous_systems.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ function nosehoover_jacob(u, p, t)
538538
x,y,z = u
539539
return @SMatrix [0 1 0;
540540
-1 z y;
541-
0 2y 0]
541+
0 -2y 0]
542542
end
543543

544544
"""

0 commit comments

Comments
 (0)