You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.8 KiB

25 years ago
  1. // Simple vectors of rational numbers.
  2. #ifndef _CL_SV_RATIONAL_H
  3. #define _CL_SV_RATIONAL_H
  4. #include "cl_number.h"
  5. #include "cl_SV_real.h"
  6. #include "cl_rational_class.h"
  7. #include "cl_io.h"
  8. // A vector of rational numbers is just a normal vector of real numbers.
  9. typedef cl_heap_SV<cl_RA> cl_heap_SV_RA;
  10. struct cl_SV_RA : public cl_SV<cl_RA,cl_SV_R> {
  11. public:
  12. // Constructors.
  13. cl_SV_RA () : cl_SV<cl_RA,cl_SV_R> ((cl_heap_SV_RA*) (cl_heap_SV_number*) cl_null_SV_number) {};
  14. cl_SV_RA (const cl_SV_RA&);
  15. explicit cl_SV_RA (uintL len) : cl_SV<cl_RA,cl_SV_R> ((cl_heap_SV_RA*) cl_make_heap_SV_number(len)) {};
  16. // Assignment operators.
  17. cl_SV_RA& operator= (const cl_SV_RA&);
  18. // Private pointer manipulations.
  19. cl_SV_RA (cl_heap_SV_RA* p) : cl_SV<cl_RA,cl_SV_R> (p) {}
  20. cl_SV_RA (cl_private_thing p) : cl_SV<cl_RA,cl_SV_R> (p) {}
  21. };
  22. inline cl_SV_RA::cl_SV_RA (const cl_SV_RA& x) : cl_SV<cl_RA,cl_SV_R> (as_cl_private_thing(x)) {}
  23. CL_DEFINE_ASSIGNMENT_OPERATOR(cl_SV_RA,cl_SV_RA)
  24. // Copy a simple vector.
  25. inline const cl_SV_RA copy (const cl_SV_RA& vector)
  26. {
  27. return The(cl_SV_RA) (copy((const cl_SV_R&) vector));
  28. }
  29. // Output.
  30. inline void fprint (cl_ostream stream, const cl_SV_RA& x)
  31. {
  32. extern cl_print_flags cl_default_print_flags;
  33. 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_SV_number& vector);
  34. extern void print_rational (cl_ostream stream, const cl_print_flags& flags, const cl_RA& z);
  35. print_vector(stream, cl_default_print_flags,
  36. (void (*) (cl_ostream, const cl_print_flags&, const cl_number&))
  37. (void (*) (cl_ostream, const cl_print_flags&, const cl_RA&))
  38. &print_rational,
  39. x);
  40. }
  41. CL_DEFINE_PRINT_OPERATOR(cl_SV_RA)
  42. #endif /* _CL_SV_RAATIONAL_H */