]> www.ginac.de Git - cln.git/blobdiff - src/complex/transcendental/cl_C_asin.cc
Replace unused macro with cl_unused.
[cln.git] / src / complex / transcendental / cl_C_asin.cc
index f121c7f933eaa128d8bb6c922e6a419df669a8b9..4843d234e36f135c636cbb09cea9da844f159e63 100644 (file)
@@ -1,7 +1,7 @@
 // asin().
 
 // 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 {
@@ -18,8 +18,8 @@ namespace cln {
 // Wert und Branch Cuts nach der Formel CLTL2, S. 311:
 //   arcsin(z) = log(iz+sqrt(1-z^2))/i
 // Sei z=x+iy, errechne u+iv = arsinh(-y+ix) wie oben, Ergebnis v-iu.
-// Real- und Imaginärteil des Ergebnisses sind Floats, außer wenn z reell oder
-// rein imaginär ist.
+// Real- und Imaginärteil des Ergebnisses sind Floats, außer wenn z reell oder
+// rein imaginär ist.
 
 inline const cl_C_R _asin (const cl_N& z)
 {