X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;ds=sidebyside;f=include%2Fcln%2FGV_real.h;fp=include%2Fcln%2FGV_real.h;h=711ff4d7daba4643b0f2da22b56798e08317a74f;hb=850abfde7f0d985ba01526c346bcd0d733562943;hp=0000000000000000000000000000000000000000;hpb=e0b64ba4f92bb0323e5b241b465d17389ceff2d9;p=cln.git diff --git a/include/cln/GV_real.h b/include/cln/GV_real.h new file mode 100644 index 0000000..711ff4d --- /dev/null +++ b/include/cln/GV_real.h @@ -0,0 +1,58 @@ +// General vectors of real numbers. + +#ifndef _CL_GV_REAL_H +#define _CL_GV_REAL_H + +#include "cln/number.h" +#include "cln/GV_complex.h" +#include "cln/real_class.h" +#include "cln/io.h" + +namespace cln { + +// A vector of real numbers is just a normal vector of numbers. + +typedef cl_heap_GV cl_heap_GV_R; + +struct cl_GV_R : public cl_GV { +public: + // Constructors. + cl_GV_R (); + cl_GV_R (const cl_GV_R&); + explicit cl_GV_R (uintL len); + // Assignment operators. + cl_GV_R& operator= (const cl_GV_R&); + // Private pointer manipulations. + cl_GV_R (cl_heap_GV_R* p) : cl_GV (p) {} + cl_GV_R (cl_private_thing p) : cl_GV (p) {} +}; +inline cl_GV_R::cl_GV_R (const cl_GV_R& x) : cl_GV (as_cl_private_thing(x)) {} +CL_DEFINE_ASSIGNMENT_OPERATOR(cl_GV_R,cl_GV_R) +inline cl_GV_R::cl_GV_R (uintL len) + : cl_GV ((cl_heap_GV_R*) cl_make_heap_GV_number(len)) {} +inline cl_GV_R::cl_GV_R () + : cl_GV ((cl_heap_GV_R*) (cl_heap_GV_number*) cl_null_GV_number) {} + +// Copy a vector. +inline const cl_GV_R copy (const cl_GV_R& vector) +{ + return The(cl_GV_R) (copy((const cl_GV_N&) vector)); +} + +// Output. +inline void fprint (cl_ostream stream, const cl_GV_R& x) +{ + extern cl_print_flags default_print_flags; + extern void print_vector (cl_ostream stream, const cl_print_flags& flags, void (* fun) (cl_ostream, const cl_print_flags&, const cl_number&), const cl_GV_number& vector); + extern void print_real (cl_ostream stream, const cl_print_flags& flags, const cl_R& z); + print_vector(stream, default_print_flags, + (void (*) (cl_ostream, const cl_print_flags&, const cl_number&)) + (void (*) (cl_ostream, const cl_print_flags&, const cl_R&)) + &print_real, + x); +} +CL_DEFINE_PRINT_OPERATOR(cl_GV_R) + +} // namespace cln + +#endif /* _CL_GV_REAL_H */