diff src/Grids/manifolds.jl @ 1577:d5aa72662161 feature/grids/manifolds

Change to expect the jacobian of a chart to take x as an argument
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 25 Apr 2024 21:53:06 +0200
parents a7245343eb98
children 56da785ab576
line wrap: on
line diff
--- a/src/Grids/manifolds.jl	Thu Apr 25 21:52:22 2024 +0200
+++ b/src/Grids/manifolds.jl	Thu Apr 25 21:53:06 2024 +0200
@@ -98,6 +98,7 @@
 (c::ConcreteChart)(x̄) = c.mapping(x̄)
 parameterspace(c::ConcreteChart) = c.parameterspace
 
+jacobian(c::ConcreteChart, x) = jacobian(c.mapping, x)
 
 """
     Atlas