[GIT] ppl/ppl(master): Fixed several Doxygen warnings.
Module: ppl/ppl Branch: master Commit: 29702bdc84ed6f040a22dc730b07d084a3db8e85 URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=29702bdc84ed6...
Author: Enea Zaffanella zaffanella@cs.unipr.it Date: Sat Jun 23 11:30:49 2012 +0200
Fixed several Doxygen warnings.
---
src/Linear_Form.templates.hh | 33 ++++++++++++++++----------------- src/Linear_System.defs.hh | 3 +++ 2 files changed, 19 insertions(+), 17 deletions(-)
diff --git a/src/Linear_Form.templates.hh b/src/Linear_Form.templates.hh index 3eca9ac..7af69d1 100644 --- a/src/Linear_Form.templates.hh +++ b/src/Linear_Form.templates.hh @@ -82,7 +82,7 @@ Linear_Form<C>::Linear_Form(const Linear_Expression& e) vec[0] = e.inhomogeneous_term(); }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C> operator+(const Linear_Form<C>& f1, const Linear_Form<C>& f2) { @@ -133,7 +133,7 @@ operator+(const Variable v, const Linear_Form<C>& f) { return r; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C> operator+(const C& n, const Linear_Form<C>& f) { @@ -142,7 +142,7 @@ operator+(const C& n, const Linear_Form<C>& f) { return r; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C> operator-(const Linear_Form<C>& f) { @@ -152,7 +152,7 @@ operator-(const Linear_Form<C>& f) { return r; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C> operator-(const Linear_Form<C>& f1, const Linear_Form<C>& f2) { @@ -188,7 +188,7 @@ operator-(const Linear_Form<C>& f1, const Linear_Form<C>& f2) { } }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C> operator-(const Variable v, const Linear_Form<C>& f) { @@ -224,7 +224,7 @@ operator-(const Linear_Form<C>& f, const Variable v) { return r; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C> operator-(const C& n, const Linear_Form<C>& f) { @@ -235,18 +235,17 @@ operator-(const C& n, const Linear_Form<C>& f) { return r; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C> -operator*(const C& n, - const Linear_Form<C>& f) { +operator*(const C& n, const Linear_Form<C>& f) { Linear_Form<C> r(f); for (dimension_type i = f.size(); i-- > 0; ) r[i] *= n; return r; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C>& operator+=(Linear_Form<C>& f1, const Linear_Form<C>& f2) { @@ -259,7 +258,7 @@ operator+=(Linear_Form<C>& f1, const Linear_Form<C>& f2) { return f1; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C>& operator+=(Linear_Form<C>& f, const Variable v) { @@ -274,7 +273,7 @@ operator+=(Linear_Form<C>& f, const Variable v) { return f; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C>& operator-=(Linear_Form<C>& f1, const Linear_Form<C>& f2) { @@ -287,7 +286,7 @@ operator-=(Linear_Form<C>& f1, const Linear_Form<C>& f2) { return f1; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C>& operator-=(Linear_Form<C>& f, const Variable v) { @@ -302,7 +301,7 @@ operator-=(Linear_Form<C>& f, const Variable v) { return f; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C>& operator*=(Linear_Form<C>& f, const C& n) { @@ -312,7 +311,7 @@ operator*=(Linear_Form<C>& f, const C& n) { return f; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> Linear_Form<C>& operator/=(Linear_Form<C>& f, const C& n) { @@ -322,7 +321,7 @@ operator/=(Linear_Form<C>& f, const C& n) { return f; }
-/*! \relates Linear_Row */ +/*! \relates Linear_Form */ template <typename C> inline bool operator==(const Linear_Form<C>& x, const Linear_Form<C>& y) { @@ -474,7 +473,7 @@ Linear_Form<C>::intervalize(const FP_Oracle<Target,C>& oracle, return true; }
-/*! \relates Parma_Polyhedra_Library::Linear_Form */ +/*! \relates Linear_Form */ template <typename C> std::ostream& IO_Operators::operator<<(std::ostream& s, const Linear_Form<C>& f) { diff --git a/src/Linear_System.defs.hh b/src/Linear_System.defs.hh index a260842..870cb38 100644 --- a/src/Linear_System.defs.hh +++ b/src/Linear_System.defs.hh @@ -79,6 +79,9 @@ public: \param space_dim The number of space dimensions of the system that will be created.
+ \param r + The representation for system's rows. + Creates a \p n_rows \f$\times\f$ \p space_dim system whose coefficients are all zero and with the given topology. */
participants (1)
-
Enea Zaffanella