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.
 
 
 
 
 

16 lines
305 B

// Built-in null ring.
#ifndef _CL_NULL_RING_H
#define _CL_NULL_RING_H
#include "cln/ring.h"
namespace cln {
class cl_null_ring : public cl_ring { public: cl_null_ring (); };
extern const cl_null_ring cl_0_ring; // math. {0}
//CL_REQUIRE(cl_0_ring)
} // namespace cln
#endif /* _CL_NULL_RING_H */