]> www.ginac.de Git - cln.git/blob - include/cl_GV_real.h
f4ff825638eb2b32a88d08a070080d6a68a61bbe
[cln.git] / include / cl_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 "cl_number.h"
7 #include "cl_GV_complex.h"
8 #include "cl_real_class.h"
9 #include "cl_io.h"
10
11 // A vector of real numbers is just a normal vector of numbers.
12
13 typedef cl_heap_GV<cl_R> cl_heap_GV_R;
14
15 struct cl_GV_R : public cl_GV<cl_R,cl_GV_N> {
16 public:
17         // Constructors.
18         cl_GV_R ();
19         cl_GV_R (const cl_GV_R&);
20         explicit cl_GV_R (uintL len);
21         // Assignment operators.
22         cl_GV_R& operator= (const cl_GV_R&);
23         // Private pointer manipulations.
24         cl_GV_R (cl_heap_GV_R* p) : cl_GV<cl_R,cl_GV_N> (p) {}
25         cl_GV_R (cl_private_thing p) : cl_GV<cl_R,cl_GV_N> (p) {}
26 };
27 inline cl_GV_R::cl_GV_R (const cl_GV_R& x) : cl_GV<cl_R,cl_GV_N> (as_cl_private_thing(x)) {}
28 CL_DEFINE_ASSIGNMENT_OPERATOR(cl_GV_R,cl_GV_R)
29 inline cl_GV_R::cl_GV_R (uintL len)
30         : cl_GV<cl_R,cl_GV_N> ((cl_heap_GV_R*) cl_make_heap_GV_number(len)) {}
31 inline cl_GV_R::cl_GV_R ()
32         : cl_GV<cl_R,cl_GV_N> ((cl_heap_GV_R*) (cl_heap_GV_number*) cl_null_GV_number) {}
33
34 // Copy a vector.
35 inline const cl_GV_R copy (const cl_GV_R& vector)
36 {
37         return The(cl_GV_R) (copy((const cl_GV_N&) vector));
38 }
39
40 // Output.
41 inline void fprint (cl_ostream stream, const cl_GV_R& x)
42 {
43         extern cl_print_flags cl_default_print_flags;
44         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);
45         extern void print_real (cl_ostream stream, const cl_print_flags& flags, const cl_R& z);
46         print_vector(stream, cl_default_print_flags,
47                      (void (*) (cl_ostream, const cl_print_flags&, const cl_number&))
48                      (void (*) (cl_ostream, const cl_print_flags&, const cl_R&))
49                      &print_real,
50                      x);
51 }
52 CL_DEFINE_PRINT_OPERATOR(cl_GV_R)
53
54 #endif /* _CL_GV_REAL_H */