
Module: ppl/ppl Branch: master Commit: e9f9532b48874bdd02cac2f88fe241629bfd0e04 URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=e9f9532b48874...
Author: Enea Zaffanella zaffanella@cs.unipr.it Date: Wed Feb 17 10:06:30 2010 +0100
Tests 2, 5, 7, 8, 9 and 10 do not overflow on 16 bit coefficients.
---
tests/PIP_Problem/pipproblem1.cc | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/PIP_Problem/pipproblem1.cc b/tests/PIP_Problem/pipproblem1.cc index ff305ca..6a1582d 100644 --- a/tests/PIP_Problem/pipproblem1.cc +++ b/tests/PIP_Problem/pipproblem1.cc @@ -383,13 +383,13 @@ test10() {
BEGIN_MAIN DO_TEST(test01); - DO_TEST_F16(test02); + DO_TEST_F8(test02); DO_TEST(test03); DO_TEST(test04); - DO_TEST_F16(test05); + DO_TEST_F8(test05); DO_TEST(test06); - DO_TEST_F16(test07); - DO_TEST_F16(test08); - DO_TEST_F16(test09); - DO_TEST_F16(test10); + DO_TEST_F8(test07); + DO_TEST_F8(test08); + DO_TEST_F8(test09); + DO_TEST_F8(test10); END_MAIN