From ad274699a314e4cb271b778bb07655c83a516d9d Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Tue, 13 May 2025 00:03:50 +0200 Subject: [PATCH] Fix Newton homotopy definition --- python/hccd/homotopy_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/hccd/homotopy_generator.py b/python/hccd/homotopy_generator.py index e6e3ff0..62a6690 100644 --- a/python/hccd/homotopy_generator.py +++ b/python/hccd/homotopy_generator.py @@ -60,7 +60,7 @@ class HomotopyGenerator: F_y = self._F_lambda(*received) for f, f_y_i in zip(self._F, F_y): - G.append(f - (1 - self.t) * f_y_i) + G.append(f - f_y_i) return sp.MutableMatrix(G)