xml
format.
Functions | |
template<class ISTREAM> | |
bool | skip (ISTREAM &is, char *s) |
template<class OSTREAM, typename X> | |
OSTREAM & | print (OSTREAM &os, const X &x, char *tag) |
template<class ISTREAM, typename T> | |
bool | read_pol (ISTREAM &is, T &p) |
Read a polynomial, enclosed in polynomial tags. | |
template<class ISTREAM, typename T, class VAR> | |
bool | read_pol (ISTREAM &is, T &p, const VAR &V) |
Read a polynomial, enclosed in polynomial tags. | |
template<class ISTREAM, typename C, typename O, typename R> | |
bool | read (ISTREAM &is, MPol< C, O, R > &p) |
Read a multivariate polynomial, enclosed in polynomial tags. | |
template<class ISTREAM, typename C, typename O, typename R, typename VAR> | |
bool | read (ISTREAM &is, MPol< C, O, R > &p, const VAR &V) |
Read a multivariate polynomial, enclosed in polynomial tags. | |
template<class OSTREAM, typename C, typename O, typename R> | |
OSTREAM & | print (OSTREAM &os, const MPol< C, O, R > &p) |
Print a multivariate polynomial, with its polynomial tags. | |
template<class ISTREAM, typename T> | |
bool | read_upol (ISTREAM &is, T &p) |
Read a polynomial, enclosed in polynomial tags. | |
template<class ISTREAM, typename C, typename R> | |
bool | read (ISTREAM &is, UPolDse< C, R > &p) |
Read a univariate polynomial, enclosed in polynomial tags. | |
template<class OSTREAM, typename C, typename R> | |
OSTREAM & | print (OSTREAM &os, const UPolDse< C, R > &p) |
Print a univariate polynomial, with its polynomial tags. |
OSTREAM& xml::print | ( | OSTREAM & | os, | |
const UPolDse< C, R > & | p | |||
) |
OSTREAM& xml::print | ( | OSTREAM & | os, | |
const MPol< C, O, R > & | p | |||
) |
bool xml::read | ( | ISTREAM & | is, | |
UPolDse< C, R > & | p | |||
) |
Read a univariate polynomial, enclosed in polynomial
tags.
Definition at line 42 of file xml.h.
References read_upol().
bool xml::read | ( | ISTREAM & | is, | |
MPol< C, O, R > & | p, | |||
const VAR & | V | |||
) |
Read a multivariate polynomial, enclosed in polynomial
tags.
Definition at line 27 of file xml.h.
References read_pol().
bool xml::read | ( | ISTREAM & | is, | |
MPol< C, O, R > & | p | |||
) |
Read a multivariate polynomial, enclosed in polynomial
tags.
Definition at line 19 of file xml.h.
References read_pol().
bool xml::read_pol | ( | ISTREAM & | is, | |
T & | p, | |||
const VAR & | V | |||
) |
bool xml::read_pol | ( | ISTREAM & | is, | |
T & | p | |||
) |
bool xml::read_upol | ( | ISTREAM & | is, | |
T & | p | |||
) |
bool xml::skip | ( | ISTREAM & | is, | |
char * | s | |||
) |
Skip the input stream until s is found. It returns true if s
is found.
Definition at line 19 of file xml.h.
Referenced by read_pol(), and read_upol().