From 9f672b876b2aa5df89326397873881de3054fb30 Mon Sep 17 00:00:00 2001 From: cianciosa Date: Sat, 7 Feb 2026 17:47:10 -0500 Subject: [PATCH] Second attempt to fix the CI runner. Remove unused include. --- graph_framework/special_functions.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/graph_framework/special_functions.hpp b/graph_framework/special_functions.hpp index e250b0a..7eadcfa 100644 --- a/graph_framework/special_functions.hpp +++ b/graph_framework/special_functions.hpp @@ -18,7 +18,6 @@ template using complex_type = complex; #else -#include #include #include #include @@ -1583,7 +1582,7 @@ namespace special { #endif complex_type erfi(const complex_type z) { // Avoids NaN instead of doing i*z and -i*temp; - const complex_type temp = erf_complex (complex_type (-imag (z), real (z))); + const complex_type temp = erf_complex (complex_type (-imag(z), real(z))); return complex_type (imag(temp), -real(temp)); } } -- GitLab