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.

47 lines
1.6 KiB

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