]> www.ginac.de Git - cln.git/blob - include/cln/GV_real.h
cl_{GV,SV}: use std::size_t for size of vectors (instead of obscure uintC).
[cln.git] / include / cln / GV_real.h
1 // General vectors of real numbers.
2
3 #ifndef _CL_GV_REAL_H
4 #define _CL_GV_REAL_H
5
6 #include "cln/number.h"
7 #include "cln/GV_complex.h"
8 #include "cln/real_class.h"
9 #include "cln/io.h"
10
11 namespace cln {
12
13 // A vector of real numbers is just a normal vector of numbers.
14
15 typedef cl_heap_GV<cl_R> cl_heap_GV_R;
16
17 struct cl_GV_R : public cl_GV<cl_R,cl_GV_N> {
18 public:
19         // Constructors.
20         cl_GV_R ();
21         cl_GV_R (const cl_GV_R&);
22         explicit cl_GV_R (std::size_t len);
23         // Assignment operators.
24         cl_GV_R& operator= (const cl_GV_R&);
25         // Private pointer manipulations.
26         cl_GV_R (cl_heap_GV_R* p) : cl_GV<cl_R,cl_GV_N> (p) {}
27         cl_GV_R (cl_private_thing p) : cl_GV<cl_R,cl_GV_N> (p) {}
28 };
29 inline cl_GV_R::cl_GV_R (const cl_GV_R& x) : cl_GV<cl_R,cl_GV_N> (as_cl_private_thing(x)) {}
30 CL_DEFINE_ASSIGNMENT_OPERATOR(cl_GV_R,cl_GV_R)
31 inline cl_GV_R::cl_GV_R (std::size_t len)
32         : cl_GV<cl_R,cl_GV_N> ((cl_heap_GV_R*) cl_make_heap_GV_number(len)) {}
33 inline cl_GV_R::cl_GV_R ()
34         : cl_GV<cl_R,cl_GV_N> ((cl_heap_GV_R*) (cl_heap_GV_number*) cl_null_GV_number) {}
35
36 // Copy a vector.
37 inline const cl_GV_R copy (const cl_GV_R& vector)
38 {
39         return The(cl_GV_R) (copy((const cl_GV_N&) vector));
40 }
41
42 // Output.
43 inline void fprint (std::ostream& stream, const cl_GV_R& x)
44 {
45         extern cl_print_flags default_print_flags;
46         extern void print_vector (std::ostream& stream, const cl_print_flags& flags, void (* fun) (std::ostream&, const cl_print_flags&, const cl_number&), const cl_GV_number& vector);
47         extern void print_real (std::ostream& stream, const cl_print_flags& flags, const cl_R& z);
48         print_vector(stream, default_print_flags,
49                      (void (*) (std::ostream&, const cl_print_flags&, const cl_number&))
50                      (void (*) (std::ostream&, const cl_print_flags&, const cl_R&))
51                      &print_real,
52                      x);
53 }
54 CL_DEFINE_PRINT_OPERATOR(cl_GV_R)
55
56 }  // namespace cln
57
58 #endif /* _CL_GV_REAL_H */