diff options
author | Olivier Gayot <og@satcom1.com> | 2017-11-18 15:39:32 +0100 |
---|---|---|
committer | Olivier Gayot <og@satcom1.com> | 2017-11-19 14:01:08 +0100 |
commit | 0916e5446434acd1a3a8384a3e9b1d935f654140 (patch) | |
tree | fa335f67b8c008c7ffee017fcc91e34c0bc07d7a /number.h | |
parent | f5331e02dd2e10c20cb562aa7940747e860411b0 (diff) |
Added multiplication of two numbers
We are using an easy to implemented but extremely slow algorithm to
compute the multiplication of two numbers of size n.
Signed-off-by: Olivier Gayot <og@satcom1.com>
Diffstat (limited to 'number.h')
-rw-r--r-- | number.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -33,6 +33,14 @@ public: number operator+(const number &n) const; /** + * \brief Return the result of the multiplication of a number and this + * number. + * + * \param n The number to multiply with this number. + */ + number operator*(const number &) const; + + /** * \brief Tells whether the number passed as parameter is strictly less * than this number. * |