]> www.ginac.de Git - cln.git/blob - include/cl_GV_rational.h
Initial revision
[cln.git] / include / cl_GV_rational.h
1 // General vectors of rational numbers.
2
3 #ifndef _CL_GV_RATIONAL_H
4 #define _CL_GV_RATIONAL_H
5
6 #include "cl_number.h"
7 #include "cl_GV_real.h"
8 #include "cl_rational_class.h"
9 #include "cl_io.h"
10
11 // A vector of rational numbers is just a normal vector of real numbers.
12
13 typedef cl_heap_GV<cl_RA> cl_heap_GV_RA;
14
15 struct cl_GV_RA : public cl_GV<cl_RA,cl_GV_R> {
16 public:
17         // Constructors.
18         cl_GV_RA ();
19         cl_GV_RA (const cl_GV_RA&);
20         explicit cl_GV_RA (uintL len);
21         // Assignment operators.
22         cl_GV_RA& operator= (const cl_GV_RA&);
23         // Private pointer manipulations.
24         cl_GV_RA (cl_heap_GV_RA* p) : cl_GV<cl_RA,cl_GV_R> (p) {}
25         cl_GV_RA (cl_private_thing p) : cl_GV<cl_RA,cl_GV_R> (p) {}
26 };
27 inline cl_GV_RA::cl_GV_RA (const cl_GV_RA& x) : cl_GV<cl_RA,cl_GV_R> (as_cl_private_thing(x)) {}
28 CL_DEFINE_ASSIGNMENT_OPERATOR(cl_GV_RA,cl_GV_RA)
29 inline cl_GV_RA::cl_GV_RA (uintL len)
30         : cl_GV<cl_RA,cl_GV_R> ((cl_heap_GV_RA*) cl_make_heap_GV_number(len)) {}
31 inline cl_GV_RA::cl_GV_RA ()
32         : cl_GV<cl_RA,cl_GV_R> ((cl_heap_GV_RA*) (cl_heap_GV_number*) cl_null_GV_number) {}
33
34 // Copy a vector.
35 inline const cl_GV_RA copy (const cl_GV_RA& vector)
36 {
37         return The(cl_GV_RA) (copy((const cl_GV_R&) vector));
38 }
39
40 // Output.
41 inline void fprint (cl_ostream stream, const cl_GV_RA& 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_rational (cl_ostream stream, const cl_print_flags& flags, const cl_RA& 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_RA&))
49                      &print_rational,
50                      x);
51 }
52 CL_DEFINE_PRINT_OPERATOR(cl_GV_RA)
53
54 #endif /* _CL_GV_RAATIONAL_H */