]> www.ginac.de Git - cln.git/blob - include/cln/SV_real.h
cl_{GV,SV}: use std::size_t for size of vectors (instead of obscure uintC).
[cln.git] / include / cln / SV_real.h
1 // Simple vectors of real numbers.
2
3 #ifndef _CL_SV_REAL_H
4 #define _CL_SV_REAL_H
5
6 #include "cln/number.h"
7 #include "cln/SV_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_SV<cl_R> cl_heap_SV_R;
16
17 struct cl_SV_R : public cl_SV<cl_R,cl_SV_N> {
18 public:
19         // Constructors.
20         cl_SV_R () : cl_SV<cl_R,cl_SV_N> ((cl_heap_SV_R*) (cl_heap_SV_number*) cl_null_SV_number) {};
21         cl_SV_R (const cl_SV_R&);
22         explicit cl_SV_R (std::size_t len) : cl_SV<cl_R,cl_SV_N> ((cl_heap_SV_R*) cl_make_heap_SV_number(len)) {};
23         // Assignment operators.
24         cl_SV_R& operator= (const cl_SV_R&);
25         // Private pointer manipulations.
26         cl_SV_R (cl_heap_SV_R* p) : cl_SV<cl_R,cl_SV_N> (p) {}
27         cl_SV_R (cl_private_thing p) : cl_SV<cl_R,cl_SV_N> (p) {}
28 };
29 inline cl_SV_R::cl_SV_R (const cl_SV_R& x) : cl_SV<cl_R,cl_SV_N> (as_cl_private_thing(x)) {}
30 CL_DEFINE_ASSIGNMENT_OPERATOR(cl_SV_R,cl_SV_R)
31
32 // Copy a simple vector.
33 inline const cl_SV_R copy (const cl_SV_R& vector)
34 {
35         return The(cl_SV_R) (copy((const cl_SV_N&) vector));
36 }
37
38 // Output.
39 inline void fprint (std::ostream& stream, const cl_SV_R& x)
40 {
41         extern cl_print_flags default_print_flags;
42         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_SV_number& vector);
43         extern void print_real (std::ostream& stream, const cl_print_flags& flags, const cl_R& z);
44         print_vector(stream, default_print_flags,
45                      (void (*) (std::ostream&, const cl_print_flags&, const cl_number&))
46                      (void (*) (std::ostream&, const cl_print_flags&, const cl_R&))
47                      &print_real,
48                      x);
49 }
50 CL_DEFINE_PRINT_OPERATOR(cl_SV_R)
51
52 }  // namespace cln
53
54 #endif /* _CL_SV_REAL_H */