long_int_ge_op< C > Struct Template Reference
#include <int.hpp>
List of all members.
Public Types
Static Public Member Functions
- static bool op (const uC &s1, const uC &s0, const uC &t1, const uC &t0)
- s1 R + s0 >= t1 R + t0.  
 
 
Detailed Description
template<typename C>
 struct mmx::long_int_ge_op< C >
Definition at line 442 of file int.hpp.
Member Typedef Documentation
Member Function Documentation
      
        
          | static bool op | ( | const uC & | s1, | 
        
          |  |  | const uC & | s0, | 
        
          |  |  | const uC & | t1, | 
        
          |  |  | const uC & | t0 |  | 
        
          |  | ) |  |  |  [inline, static] | 
      
 
s1 R + s0 >= t1 R + t0. 
Definition at line 447 of file int.hpp.
00447                                                               {
00448     if (s1 > t1) return true;
00449     if (s1 < t1) return false;
00450     return s0 >= t0;
00451   }
 
 
The documentation for this struct was generated from the following file: