]> www.ginac.de Git - cln.git/blobdiff - src/real/transcendental/cl_R_atan2.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / real / transcendental / cl_R_atan2.cc
index a5d72601c5c0115c2c76ea6215bd0866c33ba255..d22281c7cf4ec518df9ca9a8983c1589ed2d755e 100644 (file)
@@ -1,7 +1,7 @@
 // atan().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
 #include "cln/real.h"
@@ -10,9 +10,9 @@
 // Implementation.
 
 #include "cln/float.h"
-#include "cl_F_tran.h"
-#include "cl_N.h"
-#include "cl_R.h"
+#include "float/transcendental/cl_F_tran.h"
+#include "base/cl_N.h"
+#include "real/cl_R.h"
 
 namespace cln {
 
@@ -29,7 +29,7 @@ const cl_R atan (const cl_R& x, const cl_R& y)
 // 0 <= |y| <= x  ->  atan(y/x)
 // 0 <= |x| <= y  ->  pi/2 - atan(x/y)
 // 0 <= |x| <= -y  ->  -pi/2 - atan(x/y)
-// 0 <= |y| <= -x  ->  für y>=0: pi + atan(y/x), für y<0: -pi + atan(y/x)
+// 0 <= |y| <= -x  ->  für y>=0: pi + atan(y/x), für y<0: -pi + atan(y/x)
 
        if (eq(y,0)) {
                // y=0 (exakt)