Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-19 08:08:30

0001 // Built-in complex number ring.
0002 
0003 #ifndef _CL_COMPLEX_RING_H
0004 #define _CL_COMPLEX_RING_H
0005 
0006 #include "cln/ring.h"
0007 #include "cln/complex_class.h"
0008 
0009 namespace cln {
0010 
0011 typedef cl_specialized_number_ring<cl_N> cl_complex_ring;
0012 extern const cl_complex_ring cl_C_ring;     // math. C
0013 extern cl_class cl_class_complex_ring;
0014 
0015 class cl_C_ring_init_helper
0016 {
0017     static int count;
0018 public:
0019     cl_C_ring_init_helper();
0020     ~cl_C_ring_init_helper();
0021 };
0022 static cl_C_ring_init_helper cl_C_ring_init_helper_instance;
0023 
0024 }  // namespace cln
0025 
0026 #endif /* _CL_COMPLEX_RING_H */