comparison src/Grids/manifolds.jl @ 1572:157c43966b06 feature/grids/manifolds

Add some tests and implement parameterspace for ConcreteChart
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 25 Apr 2024 14:13:41 +0200
parents 90af15f38c62
children bbb9065834ce
comparison
equal deleted inserted replaced
1571:c2620118f110 1572:157c43966b06
97 struct ConcreteChart{D, PST<:ParameterSpace{D}, MT} <: Chart{D} 97 struct ConcreteChart{D, PST<:ParameterSpace{D}, MT} <: Chart{D}
98 mapping::MT 98 mapping::MT
99 parameterspace::PST 99 parameterspace::PST
100 end 100 end
101 101
102 (c::Chart)(x̄) = c.mapping(x̄) 102 (c::ConcreteChart)(x̄) = c.mapping(x̄)
103 parameterspace(c::ConcreteChart) = c.parameterspace
103 104
104 105
105 """ 106 """
106 Atlas 107 Atlas
107 108