libcg / bfp

Beyond Floating Point - Posit C/C++ implementation
MIT License
289 stars 25 forks source link

Implement division #10

Closed libcg closed 7 years ago

libcg commented 7 years ago

As pointed out by @leobru, posits don't have exact reciprocals unlike unums, therefore dividing by multiplying with the inverse will not be as precise as dividing directly. We need to implement it properly.

libcg commented 7 years ago

Fixed by 00784757