X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Ftime_lw_N.cpp;h=c4ad95f98cc1ccc7af28bf794308052fdf106333;hp=36f219d5b888fe1388fe88d34489bf5cec89b27b;hb=24064b43ff0aebda40b1b4605fa6abc2920b4518;hpb=5b44febe31956b36b62cd3650f7c5249bbe8100c diff --git a/check/time_lw_N.cpp b/check/time_lw_N.cpp index 36f219d5..c4ad95f9 100644 --- a/check/time_lw_N.cpp +++ b/check/time_lw_N.cpp @@ -5,7 +5,7 @@ * Fermat-test). */ /* - * GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2015 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,9 +22,15 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "times.h" +#include "ginac.h" +#include "timer.h" +using namespace GiNaC; -static const bool do_test = false; // set to true in order to run this beast +#include +#include +using namespace std; + +constexpr bool do_test = false; // set to true in order to run this beast static unsigned test() { @@ -60,7 +66,6 @@ unsigned time_lw_N() double time = .0; cout << "timing Lewis-Wester test N (poly at rational fcns)" << flush; - clog << "-------Lewis-Wester test N (poly at rational fcns):" << endl; if (do_test) { tag_heuer.start(); @@ -70,18 +75,19 @@ unsigned time_lw_N() ++count; } while ((time=tag_heuer.read())<0.1 && !result); cout << '.' << flush; - - if (!result) { - cout << " passed "; - clog << "(no output)" << endl; - } else { - cout << " failed "; - } cout << time/count << 's' << endl; } else { cout << " disabled" << endl; - clog << "(no output)" << endl; } return result; } + +extern void randomify_symbol_serials(); + +int main(int argc, char** argv) +{ + randomify_symbol_serials(); + cout << setprecision(2) << showpoint; + return time_lw_N(); +}