You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
323 B

25 years ago
  1. // Built-in real number ring.
  2. #ifndef _CL_REAL_RING_H
  3. #define _CL_REAL_RING_H
  4. #include "cl_ring.h"
  5. #include "cl_real_class.h"
  6. typedef cl_specialized_number_ring<cl_R> cl_real_ring;
  7. extern const cl_real_ring cl_R_ring; // math. R
  8. extern cl_class cl_class_real_ring;
  9. //CL_REQUIRE(cl_R_ring)
  10. #endif /* _CL_REAL_RING_H */