]> www.ginac.de Git - cln.git/blob - src/vector/cl_GV_io.h
- Fixed a logic error in the checks of gmp3.
[cln.git] / src / vector / cl_GV_io.h
1 // I/O of vectors.
2
3 #ifndef _CL_GV_IO_H
4 #define _CL_GV_IO_H
5
6 #include "cl_number_io.h"
7 #include "cl_GV.h"
8 #include "cl_GV_complex.h"
9
10
11 // Gibt einen Vektor aus.
12 // print_vector(stream,flags,fun,z);
13 // > stream: Stream
14 // > flags: Flags
15 // > fun: Ausgabefunktion für die einzelnen Elemente
16 // > vector: Vektor
17 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);
18
19
20 #endif /* _CL_GV_IO_H */