]> www.ginac.de Git - cln.git/blobdiff - src/complex/elem/cl_C_zerop.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / complex / elem / cl_C_zerop.cc
index 3dd6c7c4a397145b78079f035647f7a081dfc344..7027030e7b5e990058f4fd5a4407dff10c3cfcd0 100644 (file)
@@ -1,7 +1,7 @@
 // zerop().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
 #include "cln/complex.h"
@@ -9,7 +9,7 @@
 
 // Implementation.
 
-#include "cl_C.h"
+#include "complex/cl_C.h"
 #include "cln/real.h"
 
 namespace cln {
@@ -21,7 +21,7 @@ bool zerop (const cl_N& x)
                return zerop(x);
        } else {
                DeclareType(cl_C,x);
-               // x komplex, teste ob Real- und Imaginärteil beide = 0 sind.
+               // x komplex, teste ob Real- und Imaginärteil beide = 0 sind.
                var const cl_R& a = realpart(x);
                var const cl_R& b = imagpart(x);
                if (zerop(a))