-
Notifications
You must be signed in to change notification settings - Fork 0
Dev Notes: 2017_03_17
Dave Hudson edited this page Mar 17, 2017
·
5 revisions
So far most of the work has been on improving the performance of the c8::natural class as integers and rationals are constructed from it, but this means that integers and rationals have been somewhat ignored. In practice, of course, these other two are actually the most common ones to want to use.
The first problem is that the test coverage for both of these is insufficient, so we need to make sure that we cover all of operators that we support. This has been less important so far because things like += and /= have been implemented in terms of the simpler operators (+ and / in these examples).