1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
/*
Theseus - maximum likelihood superpositioning of macromolecular structures
Copyright (C) 2004-2015 Douglas L. Theobald
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the:
Free Software Foundation, Inc.,
59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
-/_|:|_|_\-
*/
#ifndef ALGO_BLAST_CORE__NCBIMATH
#define ALGO_BLAST_CORE__NCBIMATH
/* $Id: ncbi_math.h,v 1.11 2005/03/10 16:12:59 papadopo Exp $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information
*
* This software/database is a "United States Government Work" under the
* terms of the United States Copyright Act. It was written as part of
* the author's official duties as a United States Government employee and
* thus cannot be copyrighted. This software/database is freely available
* to the public for use. The National Library of Medicine and the U.S.
* Government have not placed any restriction on its use or reproduction.
*
* Although all reasonable efforts have been taken to ensure the accuracy
* and reliability of the software and data, the NLM and the U.S.
* Government do not and cannot warrant the performance or results that
* may be obtained by using this software or data. The NLM and the U.S.
* Government disclaim all warranties, express or implied, including
* warranties of performance, merchantability or fitness for any particular
* purpose.
*
* Please cite the author in any work or product based on this material.
*
* ===========================================================================
*
* Authors: Gish, Kans, Ostell, Schuler
*
* Version Creation Date: 10/23/91
*
* ==========================================================================
*/
/** @file ncbi_math.h
* Prototypes for portable math library (ported from C Toolkit)
*/
/*#include <algo/blast/core/ncbi_std.h>
#include <algo/blast/core/blast_export.h>*/
double
s_PolyGamma(double x, int order);
/** Natural logarithm with shifted input
* @param x input operand (x > -1)
* @return log(x+1)
*/
double BLAST_Log1p (double x);
/** Exponentional with base e
* @param x input operand
* @return exp(x) - 1
*/
double BLAST_Expm1 (double x);
/** Factorial function
* @param n input operand
* @return (double)(1 * 2 * 3 * ... * n)
*/
double BLAST_Factorial(int n);
/** Logarithm of the factorial
* @param x input operand
* @return log(1 * 2 * 3 * ... * x)
*/
double BLAST_LnFactorial (double x);
/** log(gamma(n)), integral n
* @param n input operand
* @return log(1 * 2 * 3 * ... (n-1))
*/
double BLAST_LnGammaInt (int n);
/** Romberg numerical integrator
* @param f Pointer to the function to integrate; the first argument
* is the variable to integrate over, the second is a pointer
* to a list of additional arguments that f may need
* @param fargs Pointer to an array of extra arguments or parameters
* needed to compute the function to be integrated. None
* of the items in this list may vary over the region
* of integration
* @param p Left-hand endpoint of the integration interval
* @param q Right-hand endpoint of the integration interval
* (q is assumed > p)
* @param eps The relative error tolerance that indicates convergence
* @param epsit The number of consecutive diagonal entries in the
* Romberg array whose relative difference must be less than
* eps before convergence is assumed. This is presently
* limited to 1, 2, or 3
* @param itmin The minimum number of diagnonal Romberg entries that
* will be computed
* @return The computed integral of f() between p and q
*/
double BLAST_RombergIntegrate (double (*f) (double, void*),
void* fargs, double p, double q,
double eps, int epsit, int itmin);
/** Greatest common divisor
* @param a First operand (any integer)
* @param b Second operand (any integer)
* @return The largest integer that evenly divides a and b
*/
int BLAST_Gcd (int a, int b);
/** Divide 3 numbers by their greatest common divisor
* @param a First integer [in] [out]
* @param b Second integer [in] [out]
* @param c Third integer [in] [out]
* @return The greatest common divisor
*/
int BLAST_Gdb3(int* a, int* b, int* c);
/** Nearest integer
* @param x Input to round (rounded value must be representable
* as a 32-bit signed integer)
* @return floor(x + 0.5);
*/
long BLAST_Nint (double x);
/** Integral power of x
* @param x floating-point base of the exponential
* @param n (integer) exponent
* @return x multiplied by itself n times
*/
double BLAST_Powi (double x, int n);
/** Number of derivatives of log(x) to carry in gamma-related
computations */
#define LOGDERIV_ORDER_MAX 4
/** Number of derivatives of polygamma(x) to carry in gamma-related
computations for non-integral values of x */
#define POLYGAMMA_ORDER_MAX LOGDERIV_ORDER_MAX
/** value of pi is only used in gamma-related computations */
#define NCBIMATH_PI 3.1415926535897932384626433832795
/** Natural log(2) */
#define NCBIMATH_LN2 0.69314718055994530941723212145818
/** Natural log(PI) */
#define NCBIMATH_LNPI 1.1447298858494001741434273513531
#ifdef __cplusplus
}
#endif
/*
* ===========================================================================
*
* $Log: ncbi_math.h,v $
* Revision 1.11 2005/03/10 16:12:59 papadopo
* doxygen fixes
*
* Revision 1.10 2004/11/18 21:22:10 dondosha
* Added BLAST_Gdb3, used in greedy alignment; removed extern and added to all prototypes
*
* Revision 1.9 2004/11/02 13:54:33 papadopo
* small doxygen fixes
*
* Revision 1.8 2004/11/01 16:37:57 papadopo
* Add doxygen tags, remove unused constants
*
* Revision 1.7 2004/05/19 14:52:01 camacho
* 1. Added doxygen tags to enable doxygen processing of algo/blast/core
* 2. Standardized copyright, CVS $Id string, $Log and rcsid formatting and i
* location
* 3. Added use of @todo doxygen keyword
*
* Revision 1.6 2003/09/26 20:38:12 dondosha
* Returned prototype for the factorial function (BLAST_Factorial)
*
* Revision 1.5 2003/09/26 19:02:31 madden
* Prefix ncbimath functions with BLAST_
*
* Revision 1.4 2003/09/10 21:35:20 dondosha
* Removed Nlm_ prefix from math functions
*
* Revision 1.3 2003/08/25 22:30:24 dondosha
* Added LnGammaInt definition and Factorial prototype
*
* Revision 1.2 2003/08/11 14:57:16 dondosha
* Added algo/blast/core path to all #included headers
*
* Revision 1.1 2003/08/02 16:32:11 camacho
* Moved ncbimath.h -> ncbi_math.h
*
* Revision 1.2 2003/08/01 21:18:48 dondosha
* Correction of a #include
*
* Revision 1.1 2003/08/01 21:03:40 madden
* Cleaned up version of file for C++ toolkit
*
* ===========================================================================
*/
#endif /* !ALGO_BLAST_CORE__NCBIMATH */
|