Department of Computer Science | Institute of Theoretical Computer Science | CADMO

Theory of Combinatorial Algorithms

Prof. Emo Welzl and Prof. Bernd Gärtner

// Programm: math.h // Kleine Bibliothek mathematischer Funktionen. namespace ifm { double sqrt(double n); // PRE: n >= 0. // POST: Gibt eine Approximation der Quadratwurzel // von n zurueck. } // namespace ifm