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.
27 lines
515 B
27 lines
515 B
// Built-in real number ring.
|
|
|
|
#ifndef _CL_REAL_RING_H
|
|
#define _CL_REAL_RING_H
|
|
|
|
#include "cln/ring.h"
|
|
#include "cln/real_class.h"
|
|
|
|
namespace cln {
|
|
|
|
typedef cl_specialized_number_ring<cl_R> cl_real_ring;
|
|
extern const cl_real_ring cl_R_ring; // math. R
|
|
extern cl_class cl_class_real_ring;
|
|
|
|
class cl_R_ring_init_helper
|
|
{
|
|
static int count;
|
|
public:
|
|
cl_R_ring_init_helper();
|
|
~cl_R_ring_init_helper();
|
|
};
|
|
|
|
static cl_R_ring_init_helper cl_R_ring_init_helper_instance;
|
|
|
|
} // namespace cln
|
|
|
|
#endif /* _CL_REAL_RING_H */
|