X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Ftimes.cpp;h=9542c84ed09376e51463f65921549d790aa00b03;hp=65ca3baffc4467411841bd5ab74c3371cd1656cd;hb=5ced2647e3a2ce07042d0829017d0d12de9883a5;hpb=b6415364be14b7f3129ffe3d54e7c3c8bc74ed3c diff --git a/check/times.cpp b/check/times.cpp index 65ca3baf..9542c84e 100644 --- a/check/times.cpp +++ b/check/times.cpp @@ -30,112 +30,133 @@ int main() unsigned result = 0; try { - for (int i=0; i<1; ++i) - result += time_dennyfliegner(); + result += time_dennyfliegner(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_gammaseries(); + result += time_gammaseries(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_vandermonde(); + result += time_vandermonde(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_toeplitz(); + result += time_toeplitz(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_A(); + result += time_lw_A(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_B(); + result += time_lw_B(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_C(); + result += time_lw_C(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_D(); + result += time_lw_D(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_E(); + result += time_lw_E(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_F(); + result += time_lw_F(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_G(); + result += time_lw_G(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_H(); + result += time_lw_H(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_P(); + result += time_lw_IJKL(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result; } try { - for (int i=0; i<1; ++i) - result += time_lw_Pprime(); + result += time_lw_M1(); + } catch (const exception &e) { + cout << "Error: caught exception " << e.what() << endl; + ++result; + } + + try { + result += time_lw_O(); + } catch (const exception &e) { + cout << "Error: caught exception " << e.what() << endl; + ++result; + } + + try { + result += time_lw_P(); + } catch (const exception &e) { + cout << "Error: caught exception " << e.what() << endl; + ++result; + } + + try { + result += time_lw_Pprime(); + } catch (const exception &e) { + cout << "Error: caught exception " << e.what() << endl; + ++result; + } + + try { + result += time_lw_Q(); + } catch (const exception &e) { + cout << "Error: caught exception " << e.what() << endl; + ++result; + } + + try { + result += time_lw_Qprime(); } catch (const exception &e) { cout << "Error: caught exception " << e.what() << endl; ++result;