summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/log1p/testDoubleLog1p.c
diff options
context:
space:
mode:
authorjofret2008-05-23 13:21:36 +0000
committerjofret2008-05-23 13:21:36 +0000
commitf750add3f85fa7a942d5356d1150298fcd2ae470 (patch)
tree7a40ad0a5caafd9852288cd8a9408eb5b9de8861 /src/elementaryFunctions/log1p/testDoubleLog1p.c
parent1fb34f61c9770d2bdd217c0f10fa54c4395022a9 (diff)
downloadscilab2c-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.c3
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) {