2014-07-23 22:39:29 +02:00
|
|
|
#ifndef IVL_verireal_H
|
|
|
|
|
#define IVL_verireal_H
|
1999-06-15 04:50:02 +02:00
|
|
|
/*
|
2014-07-23 22:39:29 +02:00
|
|
|
* Copyright (c) 1999-2014 Stephen Williams (steve@icarus.com)
|
1999-06-15 04:50:02 +02:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form 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
|
2012-08-29 03:41:23 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
1999-06-15 04:50:02 +02:00
|
|
|
*/
|
|
|
|
|
|
2007-02-02 05:33:00 +01:00
|
|
|
# include "config.h"
|
2001-01-16 03:44:17 +01:00
|
|
|
#ifdef HAVE_IOSFWD
|
|
|
|
|
# include <iosfwd>
|
|
|
|
|
#else
|
2000-12-10 23:01:35 +01:00
|
|
|
class ostream;
|
2001-01-16 03:44:17 +01:00
|
|
|
#endif
|
2000-12-10 23:01:35 +01:00
|
|
|
|
2005-06-14 21:13:43 +02:00
|
|
|
using namespace std;
|
|
|
|
|
|
2003-02-07 03:47:57 +01:00
|
|
|
class verinum;
|
|
|
|
|
|
2000-12-10 23:01:35 +01:00
|
|
|
/*
|
|
|
|
|
* This class holds a floating point decimal number. The number is
|
|
|
|
|
* stored as an integer mantissa and a power of 10. The mantissa is an
|
|
|
|
|
* integer so that decimal numbers in the source (which are decimal)
|
|
|
|
|
* can be stored exactly.
|
|
|
|
|
*/
|
|
|
|
|
|
1999-06-15 04:50:02 +02:00
|
|
|
class verireal {
|
|
|
|
|
|
2000-12-10 23:01:35 +01:00
|
|
|
friend ostream& operator<< (ostream&, const verireal&);
|
2007-04-07 06:46:18 +02:00
|
|
|
friend verireal operator+ (const verireal&, const verireal&);
|
|
|
|
|
friend verireal operator- (const verireal&, const verireal&);
|
2001-11-06 07:11:55 +01:00
|
|
|
friend verireal operator* (const verireal&, const verireal&);
|
2003-02-07 03:47:57 +01:00
|
|
|
friend verireal operator/ (const verireal&, const verireal&);
|
|
|
|
|
friend verireal operator/ (const verireal&, const verinum&);
|
|
|
|
|
friend verireal operator% (const verireal&, const verireal&);
|
|
|
|
|
friend verireal operator% (const verireal&, const verinum&);
|
2006-07-31 05:50:17 +02:00
|
|
|
friend verireal pow(const verireal&, const verireal&);
|
2000-12-10 23:01:35 +01:00
|
|
|
|
2004-06-05 01:33:51 +02:00
|
|
|
// Unary minus.
|
|
|
|
|
friend verireal operator- (const verireal&);
|
|
|
|
|
|
1999-06-15 04:50:02 +02:00
|
|
|
public:
|
|
|
|
|
explicit verireal();
|
|
|
|
|
explicit verireal(const char*text);
|
2001-11-06 07:11:55 +01:00
|
|
|
explicit verireal(long val);
|
2006-10-03 07:06:00 +02:00
|
|
|
explicit verireal(double val);
|
1999-06-15 04:50:02 +02:00
|
|
|
~verireal();
|
|
|
|
|
|
2000-12-10 23:01:35 +01:00
|
|
|
/* Return the value of the floating point number as an
|
|
|
|
|
integer, rounded as needed. The shift is the power of 10 to
|
|
|
|
|
multiply the value before calculating the result. So for
|
|
|
|
|
example if the value is 2.5 and shift == 1, the result
|
|
|
|
|
is 25. */
|
|
|
|
|
long as_long(int shift =0) const;
|
2006-08-08 07:11:37 +02:00
|
|
|
int64_t as_long64(int shift =0) const;
|
2000-12-10 23:01:35 +01:00
|
|
|
|
2003-01-26 22:15:58 +01:00
|
|
|
double as_double() const;
|
2000-12-10 23:01:35 +01:00
|
|
|
|
1999-06-15 04:50:02 +02:00
|
|
|
private:
|
2003-02-07 07:13:44 +01:00
|
|
|
double value_;
|
1999-06-15 04:50:02 +02:00
|
|
|
};
|
|
|
|
|
|
2000-12-10 23:01:35 +01:00
|
|
|
extern ostream& operator<< (ostream&, const verireal&);
|
2001-11-06 07:11:55 +01:00
|
|
|
extern verireal operator* (const verireal&, const verireal&);
|
2003-02-07 03:47:57 +01:00
|
|
|
extern verireal operator/ (const verireal&, const verireal&);
|
|
|
|
|
extern verireal operator/ (const verireal&, const verinum&);
|
|
|
|
|
extern verireal operator% (const verireal&, const verireal&);
|
|
|
|
|
extern verireal operator% (const verireal&, const verinum&);
|
2006-07-31 05:50:17 +02:00
|
|
|
extern verireal pow(const verireal&, const verireal&);
|
2004-06-05 01:33:51 +02:00
|
|
|
extern verireal operator- (const verireal&);
|
2000-12-10 23:01:35 +01:00
|
|
|
|
2014-07-23 22:39:29 +02:00
|
|
|
#endif /* IVL_verireal_H */
|