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.
18 lines
387 B
18 lines
387 B
// Built-in complex number ring.
|
|
|
|
#ifndef _CL_COMPLEX_RING_H
|
|
#define _CL_COMPLEX_RING_H
|
|
|
|
#include "cln/ring.h"
|
|
#include "cln/complex_class.h"
|
|
|
|
namespace cln {
|
|
|
|
typedef cl_specialized_number_ring<cl_N> cl_complex_ring;
|
|
extern const cl_complex_ring cl_C_ring; // math. C
|
|
extern cl_class cl_class_complex_ring;
|
|
//CL_REQUIRE(cl_C_ring)
|
|
|
|
} // namespace cln
|
|
|
|
#endif /* _CL_COMPLEX_RING_H */
|