From 7260c36973fc0ad7ff24294ff5540d64bf32c334 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 19 Apr 2013 15:36:29 -0600 Subject: Fractional divisoin works. It doesn't round yet, and there's a chance I should be increasing the precision, right now it keeps the precision of the left hand side number. --- src/number.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/number.h') diff --git a/src/number.h b/src/number.h index c16dd55..3806300 100644 --- a/src/number.h +++ b/src/number.h @@ -32,6 +32,7 @@ public: void set( const Number &sNum ); void divide( const Number &rhs, Number &q, Number &r ) const; + bool isZero() const; operator Bu::String() const { -- cgit v1.2.3