]> www.ginac.de Git - cln.git/blobdiff - src/complex/cl_C.h
INSTALL.CMake: proper installation command
[cln.git] / src / complex / cl_C.h
index 4089808b3173a2f9e5a9d26e8e7fcfc5e21306d0..abbf12279000997efc2b535fdd2157c74fbc037f 100644 (file)
@@ -9,7 +9,7 @@
 #include "cln/ffloat_class.h"
 #include "cln/dfloat_class.h"
 #include "cln/lfloat_class.h"
-#include "cl_macros.h"
+#include "base/cl_macros.h"
 #include "cln/malloc.h"
 
 namespace cln {
@@ -83,9 +83,9 @@ public:
 };
 
 inline bool realp (const cl_C& x)
-       { unused x; return false; }
+       { cl_unused x; return false; }
 inline bool complexp (const cl_C& x)
-       { unused x; return true; }
+       { cl_unused x; return true; }
 
 
 // Liefert zu reellen Zahlen a und b /= Fixnum 0 die komplexe Zahl a+bi.
@@ -93,7 +93,7 @@ inline bool complexp (const cl_C& x)
 extern const cl_N complex_C (const cl_R& a, const cl_R& b);
 
 // realpart(x) liefert den Realteil der Zahl x.
-// imagpart(x) liefert den Imaginärteil der Zahl x.
+// imagpart(x) liefert den Imaginärteil der Zahl x.
 inline const cl_R& realpart (const cl_C& x)
 {
        return TheComplex(x)->realpart;
@@ -182,10 +182,10 @@ struct cl_C_R {
        cl_C_R (const cl_R& re, const cl_R& im) : realpart(re), imagpart(im) {}
 };
 
-// Hilfsfunktion für atanh und atan: u+iv := artanh(x+iy). Liefert cl_C_R(u,v).
+// Hilfsfunktion für atanh und atan: u+iv := artanh(x+iy). Liefert cl_C_R(u,v).
 extern const cl_C_R atanh (const cl_R& x, const cl_R& y);
 
-// Hilfsfunktion für asinh und asin: u+iv := arsinh(x+iy). Liefert cl_C_R(u,v).
+// Hilfsfunktion für asinh und asin: u+iv := arsinh(x+iy). Liefert cl_C_R(u,v).
 extern const cl_C_R asinh (const cl_R& x, const cl_R& y);
 
 }  // namespace cln