]> www.ginac.de Git - cln.git/blobdiff - src/base/digit/cl_2D_div.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / base / digit / cl_2D_div.cc
index d99c8e11812c511c76dab177a3bc2c48de923e6b..c13e3a3efd68a751b9b6e300e040bfdc88dcaa60 100644 (file)
@@ -1,10 +1,10 @@
 // div2adic().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
-#include "cl_2D.h"
+#include "base/digit/cl_2D.h"
 
 
 // Implementation.
@@ -14,9 +14,9 @@ namespace cln {
 uintD div2adic (uintD a, uintD b)
 {
 // Methode:
-// Konstruiere c Bit für Bit.
+// Konstruiere c Bit für Bit.
 // c := 0, d := a.
-// Für j=0,...,intDsize:
+// Für j=0,...,intDsize:
 //   [Hier b*c == a mod 2^j und d = (a-b*c)/2^j.] j=intDsize -> fertig.
 //   Falls d ungerade, setze c:=c+2^j und d:=(d-b)/2, sonst d:=d/2.
 // Ergebnis c.