PageRenderTime 45ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/cln-1.3.2/src/rational/elem/cl_RA_minusp.cc

#
C++ | 23 lines | 11 code | 8 blank | 4 comment | 0 complexity | 773b1480f57ba48ba29ecda67a2d5577 MD5 | raw file
Possible License(s): GPL-2.0
  1. // minusp().
  2. // General includes.
  3. #include "base/cl_sysdep.h"
  4. // Specification.
  5. #include "cln/rational.h"
  6. // Implementation.
  7. #define minusp minusp_inline
  8. #include "rational/cl_RA.h"
  9. #undef minusp
  10. namespace cln {
  11. bool CL_FLATTEN minusp (const cl_RA& x)
  12. {
  13. return minusp_inline(x);
  14. }
  15. } // namespace cln