]> www.ginac.de Git - cln.git/blob - include/cln/SV_complex.h
cl_{GV,SV}: use std::size_t for size of vectors (instead of obscure uintC).
[cln.git] / include / cln / SV_complex.h
1 // Simple vectors of complex numbers.
2
3 #ifndef _CL_SV_COMPLEX_H
4 #define _CL_SV_COMPLEX_H
5
6 #include "cln/number.h"
7 #include "cln/SV_number.h"
8 #include "cln/complex_class.h"
9 #include "cln/io.h"
10
11 namespace cln {
12
13 // A vector of complex numbers is just a normal vector of numbers.
14
15 typedef cl_heap_SV<cl_N> cl_heap_SV_N;
16
17 struct cl_SV_N : public cl_SV<cl_N,cl_SV_number> {
18 public:
19         // Constructors.
20         cl_SV_N () : cl_SV<cl_N,cl_SV_number> ((cl_heap_SV_N*) (cl_heap_SV_number*) cl_null_SV_number) {};
21         cl_SV_N (const cl_SV_N&);
22         explicit cl_SV_N (std::size_t len) : cl_SV<cl_N,cl_SV_number> ((cl_heap_SV_N*) cl_make_heap_SV_number(len)) {};
23         // Assignment operators.
24         cl_SV_N& operator= (const cl_SV_N&);
25         // Private pointer manipulations.
26         cl_SV_N (cl_heap_SV_N* p) : cl_SV<cl_N,cl_SV_number> (p) {}
27         cl_SV_N (cl_private_thing p) : cl_SV<cl_N,cl_SV_number> (p) {}
28 };
29 inline cl_SV_N::cl_SV_N (const cl_SV_N& x) : cl_SV<cl_N,cl_SV_number> (as_cl_private_thing(x)) {}
30 CL_DEFINE_ASSIGNMENT_OPERATOR(cl_SV_N,cl_SV_N)
31
32 // Copy a simple vector.
33 inline const cl_SV_N copy (const cl_SV_N& vector)
34 {
35         return The(cl_SV_N) (copy((const cl_SV_number&) vector));
36 }
37
38 // Output.
39 inline void fprint (std::ostream& stream, const cl_SV_N& 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_complex (std::ostream& stream, const cl_print_flags& flags, const cl_N& 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_N&))
47                      &print_complex,
48                      x);
49 }
50 CL_DEFINE_PRINT_OPERATOR(cl_SV_N)
51
52 }  // namespace cln
53
54 #endif /* _CL_SV_COMPLEX_H */