diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-01-13 15:40:58 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-01-13 15:40:58 +0000 |
commit | 6c2e5fbae055013348780582d15ea40c691c453c (patch) | |
tree | 074fcda117467f4b7bab90ffe3c7c0b0a614aad4 | |
parent | 1cd301b040ee2484f4f204a2ed6e25776e32ad48 (diff) |
INTEGRATION: CWS dr43 (1.39.18); FILE MERGED
2005/11/15 19:31:27 nn 1.39.18.1: #i55735# ERF/ERFC improved again (Kohei Yoshida)
-rw-r--r-- | scaddins/source/analysis/analysis.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scaddins/source/analysis/analysis.cxx b/scaddins/source/analysis/analysis.cxx index c78ba0b6d2ef..0b08fa67ccb6 100644 --- a/scaddins/source/analysis/analysis.cxx +++ b/scaddins/source/analysis/analysis.cxx @@ -4,9 +4,9 @@ * * $RCSfile: analysis.cxx,v $ * - * $Revision: 1.39 $ + * $Revision: 1.40 $ * - * last change: $Author: rt $ $Date: 2005-09-08 23:18:05 $ + * last change: $Author: rt $ $Date: 2006-01-13 16:40:58 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1081,7 +1081,7 @@ double SAL_CALL AnalysisAddIn::getErf( constREFXPS& xOpt, double fLL, const ANY& double SAL_CALL AnalysisAddIn::getErfc( double f ) THROWDEF_RTE_IAE { - double fRet = 1.0 - Erf( f ); + double fRet = Erfc( f ); RETURN_FINITE( fRet ); } |