diff --git a/graph_framework/special_functions.hpp b/graph_framework/special_functions.hpp index e250b0a2308c9d53fadd70afc16bf7ce2c10f2d1..7eadcfa3bd76e15a3716bf9c56cd619d20c3e722 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)); } }