diff options
author | jofret | 2008-05-23 13:21:36 +0000 |
---|---|---|
committer | jofret | 2008-05-23 13:21:36 +0000 |
commit | f750add3f85fa7a942d5356d1150298fcd2ae470 (patch) | |
tree | 7a40ad0a5caafd9852288cd8a9408eb5b9de8861 /src/elementaryFunctions/log1p/testDoubleLog1p.c | |
parent | 1fb34f61c9770d2bdd217c0f10fa54c4395022a9 (diff) | |
download | scilab2c-f750add3f85fa7a942d5356d1150298fcd2ae470.tar.gz scilab2c-f750add3f85fa7a942d5356d1150298fcd2ae470.tar.bz2 scilab2c-f750add3f85fa7a942d5356d1150298fcd2ae470.zip |
Correct dependancies
Diffstat (limited to 'src/elementaryFunctions/log1p/testDoubleLog1p.c')
-rw-r--r-- | src/elementaryFunctions/log1p/testDoubleLog1p.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/elementaryFunctions/log1p/testDoubleLog1p.c b/src/elementaryFunctions/log1p/testDoubleLog1p.c index b9b1ca09..97d60996 100644 --- a/src/elementaryFunctions/log1p/testDoubleLog1p.c +++ b/src/elementaryFunctions/log1p/testDoubleLog1p.c @@ -16,6 +16,9 @@ void dlog1psTest(void) { /* FIXME : Implement some test here ... */ printf(">> Double scalar\n"); printf("dlog1ps(0) = %e\n", dlog1ps((double) 0)); + printf("dlog1ps(-1) = %e\n", dlog1ps(-1.0)); + printf("dlog1ps(-2) = %e\n", dlog1ps(-2.0)); + printf("dlog1ps(-0.9) = %e\n", dlog1ps(-0.9)); } int testLog1p(void) { |