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
340 B

// Built-in integer ring.
#ifndef _CL_INTEGER_RING_H
#define _CL_INTEGER_RING_H
#include "cl_ring.h"
#include "cl_integer_class.h"
typedef cl_specialized_number_ring<cl_I> cl_integer_ring;
extern const cl_integer_ring cl_I_ring; // math. Z
extern cl_class cl_class_integer_ring;
//CL_REQUIRE(cl_I_ring)
#endif /* _CL_INTEGER_RING_H */