diff options
author | jofret | 2008-04-21 14:42:42 +0000 |
---|---|---|
committer | jofret | 2008-04-21 14:42:42 +0000 |
commit | e5f156c5940aa8cb1362705671ad3f6d828c5e3a (patch) | |
tree | 9e3c5835c2c7a16bd448a290adcd0f79324beed6 /src/elementaryFunctions/log1p/testDoubleLog1p.c | |
parent | 002e79572a8533656d7171e52cabe08d10110c72 (diff) | |
download | scilab2c-e5f156c5940aa8cb1362705671ad3f6d828c5e3a.tar.gz scilab2c-e5f156c5940aa8cb1362705671ad3f6d828c5e3a.tar.bz2 scilab2c-e5f156c5940aa8cb1362705671ad3f6d828c5e3a.zip |
Double vs Float better management. Enable psycho warnings.
Diffstat (limited to 'src/elementaryFunctions/log1p/testDoubleLog1p.c')
-rw-r--r-- | src/elementaryFunctions/log1p/testDoubleLog1p.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/elementaryFunctions/log1p/testDoubleLog1p.c b/src/elementaryFunctions/log1p/testDoubleLog1p.c new file mode 100644 index 00000000..b9b1ca09 --- /dev/null +++ b/src/elementaryFunctions/log1p/testDoubleLog1p.c @@ -0,0 +1,36 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + +#include "testLog1p.h" + +void dlog1psTest(void) { + /* FIXME : Implement some test here ... */ + printf(">> Double scalar\n"); + printf("dlog1ps(0) = %e\n", dlog1ps((double) 0)); +} + +int testLog1p(void) { + printf("\n>>>> Double Logarithm x + 1 Tests\n"); + dlog1psTest(); + /* FIXME : Implement some test here ... */ + /* + zlog1psTest(); + dlog1paTest(); + zlog1paTest(); + */ + return 0; +} + +int main(void) { + assert(testLog1p() == 0); + return 0; +} |