Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/celt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-03-02 13:25:22 +0300
committerJean-Marc Valin <jean-marc.valin@usherbrooke.ca>2008-03-02 13:25:22 +0300
commit7ff2cbc1bdbe295f3f8979c5bc12a722a8e52be4 (patch)
tree0b9e5a1e2a37f1200a5574b00a676ffe0ffae8c9 /tests
parent37942649cc889816d53e54fd98f4bebc279efd63 (diff)
oops, fixed the Laplace testcase
Diffstat (limited to 'tests')
-rw-r--r--tests/laplace-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/laplace-test.c b/tests/laplace-test.c
index 1c093ef..5d0a6c6 100644
--- a/tests/laplace-test.c
+++ b/tests/laplace-test.c
@@ -20,7 +20,7 @@ int main()
val[0] = 3; decay[0] = 6000;
val[1] = 0; decay[1] = 5800;
val[2] = -1; decay[2] = 5600;
- for (i=0;i<10000;i++)
+ for (i=3;i<10000;i++)
{
val[i] = rand()%15-7;
decay[i] = rand()%11000+5000;