From 7355564d3595a709ddcd8a4a0a0f39db1a9090f9 Mon Sep 17 00:00:00 2001 From: Daniel Knuettel Date: Thu, 6 Jun 2024 14:02:30 +0200 Subject: [PATCH] added inifinitesima_to_cartesian for ot_vector_complex_additive_group --- lib/gpt/core/object_type/complex_additive_group.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/gpt/core/object_type/complex_additive_group.py b/lib/gpt/core/object_type/complex_additive_group.py index f7889e91a..c01a155be 100644 --- a/lib/gpt/core/object_type/complex_additive_group.py +++ b/lib/gpt/core/object_type/complex_additive_group.py @@ -91,6 +91,9 @@ def __init__(self, n): } self.cache = {} + def infinitesimal_to_cartesian(self, a, da): + return da + def compose(self, a, b): return a + b