X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Fcomplex%2Felem%2Fcl_C_equal.cc;h=e2dcfddb3f0ad65b3e2a2ab608d7112a92dacab1;hb=3af2cde18b3aabed4c808b0113daa81c2263b0bd;hp=813b8c45db151239176f9c2ac659102162ce862b;hpb=5370ad8054201cf23d4f94a52f4d3f7f9f3cd511;p=cln.git diff --git a/src/complex/elem/cl_C_equal.cc b/src/complex/elem/cl_C_equal.cc index 813b8c4..e2dcfdd 100644 --- a/src/complex/elem/cl_C_equal.cc +++ b/src/complex/elem/cl_C_equal.cc @@ -1,7 +1,7 @@ // equal(). // 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 { @@ -20,7 +20,7 @@ bool equal (const cl_N& x, const cl_N& y) // Falls beide reell, klar. // Falls x reell, y komplex: (= x (realpart y)) und (zerop (imagpart y)). // Falls x komplex, y reell: analog -// Falls beide komplex: Realteile und Imaginärteile jeweils gleich? +// Falls beide komplex: Realteile und Imaginärteile jeweils gleich? if (realp(x)) { DeclareType(cl_R,x); if (realp(y)) {