From ee98a2db3a25ee7200460205a31d44ef939e81b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Pe=C3=B1aranda?= Date: Thu, 17 Dec 2009 16:11:42 +0000 Subject: [PATCH] typo --- Algebraic_kernel_d/examples/Algebraic_kernel_d/Isolate_1.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Algebraic_kernel_d/examples/Algebraic_kernel_d/Isolate_1.cpp b/Algebraic_kernel_d/examples/Algebraic_kernel_d/Isolate_1.cpp index e5256038ade..b41539a594d 100644 --- a/Algebraic_kernel_d/examples/Algebraic_kernel_d/Isolate_1.cpp +++ b/Algebraic_kernel_d/examples/Algebraic_kernel_d/Isolate_1.cpp @@ -35,14 +35,14 @@ int main(){ // of which the first constructed number is root std::pair isolation1 = isolate_1(frominterval,pol); std::cout << "Isolating the second algebraic number gives: [" - << isolation1.first << "," << isolation1.second << "\n"; + << isolation1.first << "," << isolation1.second << "]\n"; // isolate again the same algebraic number, this time with respect to // the polynomial 10*x-14 (which has root 1.4, close to this algebraic // number) std::pair isolation2 = isolate_1(frominterval,10*x-14); std::cout << "Isolating again the second algebraic number gives: [" - << isolation2.first << "," << isolation2.second << "\n"; + << isolation2.first << "," << isolation2.second << "]\n"; return 0; }