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 235 236 237 238 239 240
|
/* This file is part of the KDE project
Copyright 2007 Tomas Mecir <mecirt@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; only
version 2 of the License.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef CALLIGRA_SHEETS_NUMBER_H
#define CALLIGRA_SHEETS_NUMBER_H
#include "sheets_odf_export.h"
// #define CALLIGRA_SHEETS_HIGH_PRECISION_SUPPORT
#ifndef CALLIGRA_SHEETS_HIGH_PRECISION_SUPPORT
#include <math.h>
typedef long double Number;
inline long double numToDouble(Number n)
{
return n;
}
namespace Calligra
{
namespace Sheets
{
inline Number log(const Number &n, Number base)
{
return ::log10(n) / ::log10(base);
}
inline Number ln(const Number &n)
{
return ::log(n);
}
inline Number tg(const Number &n)
{
return ::tan(n);
}
inline Number atg(const Number &n)
{
return ::atan(n);
}
inline Number tgh(const Number &n)
{
return ::tanh(n);
}
inline Number atgh(const Number &n)
{
return ::atanh(n);
}
} // namespace Sheets
} // namespace Calligra
#else // CALLIGRA_SHEETS_HIGH_PRECISION_SUPPORT
#include <QSharedDataPointer>
#include <complex>
using namespace std;
namespace Calligra
{
namespace Sheets
{
/**
The Number class holds a single floating-point number. At the moment, it's just a wrapper for long double, but it's going to support GnuMP or something eventually.
The class is made so that if high precision is not desired, a "typedef long double Number" will revert us back to doubles.
The class will be able to format itself into a string, using provided locale settings. (TODO: how to handle this so that parsing/formatting works even if we typedef this class out?)
Out-of-class methods for computations are provided
*/
class CALLIGRA_SHEETS_ODF_EXPORT Number
{
public:
enum Type {
Float // GnuMP will be here as well, eventually
};
// constructors
Number();
explicit Number(int num); //krazy:exclude=explicit
explicit Number(long double num); //krazy:exclude=explicit
Number(const Number& n);
~Number();
long double asFloat() const;
// set/get
Number& operator= (const Number &n);
// basic operations
Number operator+ (const Number &n) const;
Number operator- (const Number &n) const;
Number operator*(const Number &n) const;
Number operator/ (const Number &n) const;
void operator+= (const Number &n);
void operator-= (const Number &n);
void operator*= (const Number &n);
void operator/= (const Number &n);
void operator++ () {
return operator+= (1);
}
void operator-- () {
return operator-= (1);
}
// unary -
Number operator- () const;
Number mod(const Number &n) const;
// comparison
bool operator<= (const Number &n) const;
bool operator< (const Number &n) const;
bool operator== (const Number &n) const;
bool operator!= (const Number &n) const {
return (!operator== (n));
}
bool operator>= (const Number &n) const {
return (!operator< (n));
}
bool operator> (const Number &n) const {
return (!operator<= (n));
}
// absolute value
Number abs() const;
// negative value
Number neg() const;
// power
Number pow(const Number &exp) const;
// logarithms
Number log(Number base) const;
Number ln() const;
Number exp() const;
// goniometric functions
Number sin() const;
Number cos() const;
Number tg() const;
Number cotg() const;
Number asin() const;
Number acos() const;
Number atg() const;
static Number atan2(const Number &y, const Number &x);
// hyperbolic functions
Number sinh() const;
Number cosh() const;
Number tgh() const;
Number asinh() const;
Number acosh() const;
Number atgh() const;
// TODO: add more functions, as needed
// TODO: functions to output the number to a string
private:
class Private;
QSharedDataPointer<Private> d;
}; // class Number
// conversion to double ... when we add the option to #define the Number class as double, this routine should be kept in place, and it should simply return its parameter
// usage of this function should eventually be removed, because places that use it are not ready for high precision support
CALLIGRA_SHEETS_ODF_EXPORT long double numToDouble(Number n);
// external operators, so that we can do things like 4+a without having to create temporary objects
// not provided for complex numbers, as we won't be using them often like that
Number operator+ (long double n1, const Number &n2);
Number operator- (long double n1, const Number &n2);
Number operator*(long double n1, const Number &n2);
Number operator/ (long double n1, const Number &n2);
bool operator<= (long double n1, const Number &n2);
bool operator< (long double n1, const Number &n2);
bool operator== (long double n1, const Number &n2);
bool operator!= (long double n1, const Number &n2);
bool operator>= (long double n1, const Number &n2);
bool operator> (long double n1, const Number &n2);
// external versions of the functions
Number fmod(const Number &n1, const Number &n2);
Number fabs(const Number &n);
Number abs(const Number &n);
Number neg(const Number &n);
Number pow(const Number &n, const Number &exp);
Number sqrt(const Number &n);
Number log(const Number &n, Number base);
Number ln(const Number &n);
Number log(const Number &n);
Number log10(const Number &n);
Number exp(const Number &n);
Number sin(const Number &n);
Number cos(const Number &n);
Number tg(const Number &n);
Number cotg(const Number &n);
Number asin(const Number &n);
Number acos(const Number &n);
Number atg(const Number &n);
Number atan2(const Number &y, const Number &x);
Number sinh(const Number &n);
Number cosh(const Number &n);
Number tgh(const Number &n);
Number asinh(const Number &n);
Number acosh(const Number &n);
Number atgh(const Number &n);
} // namespace Sheets
} // namespace Calligra
#endif // CALLIGRA_SHEETS_HIGH_PRECISION_SUPPORT
#endif // CALLIGRA_SHEETS_NUMBER_H
|