Browse Source

Add the min_increment function for use by libscatter

master
Archivist 5 years ago
parent
commit
a2b9ca0d78
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      include/9float.hpp

+ 6
- 1
include/9float.hpp View File

@ -34,7 +34,12 @@ public:
: backend{0}
{}
constexpr static Q min_increment()
{
Q n;
n.backend = 1;
return n;
}
constexpr bool is_negative()
{

Loading…
Cancel
Save