[GIT] ppl/ppl(master): Added a few missing \relates Doxygen commands.

Module: ppl/ppl Branch: master Commit: 8594db9c59a6466420892b6e814ba968b268e3cf URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=8594db9c59a64...
Author: Enea Zaffanella zaffanella@cs.unipr.it Date: Mon Nov 7 09:10:27 2011 +0100
Added a few missing \relates Doxygen commands.
---
src/Sparse_Matrix.cc | 2 ++ src/Sparse_Row.cc | 2 ++ 2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/Sparse_Matrix.cc b/src/Sparse_Matrix.cc index 1ece20c..cfa4709 100644 --- a/src/Sparse_Matrix.cc +++ b/src/Sparse_Matrix.cc @@ -173,6 +173,7 @@ PPL::Sparse_Matrix::OK() const { return true; }
+/*! \relates Parma_Polyhedra_Library::Sparse_Matrix */ bool PPL::operator==(const Sparse_Matrix& x, const Sparse_Matrix& y) { if (x.num_rows() != y.num_rows()) @@ -185,6 +186,7 @@ PPL::operator==(const Sparse_Matrix& x, const Sparse_Matrix& y) { return true; }
+/*! \relates Parma_Polyhedra_Library::Sparse_Matrix */ bool PPL::operator!=(const Sparse_Matrix& x, const Sparse_Matrix& y) { return !(x == y); diff --git a/src/Sparse_Row.cc b/src/Sparse_Row.cc index 9688ba3..64e224b 100644 --- a/src/Sparse_Row.cc +++ b/src/Sparse_Row.cc @@ -514,6 +514,7 @@ PPL::Sparse_Row::OK(dimension_type /* capacity */) const { return OK(); }
+/*! \relates Parma_Polyhedra_Library::Sparse_Row */ bool PPL::operator==(const Sparse_Row& x, const Sparse_Row& y) { if (x.size() != y.size()) @@ -550,6 +551,7 @@ PPL::operator==(const Sparse_Row& x, const Sparse_Row& y) { return true; }
+/*! \relates Parma_Polyhedra_Library::Sparse_Row */ bool PPL::operator!=(const Sparse_Row& x, const Sparse_Row& y) { return !(x == y);
participants (1)
-
Enea Zaffanella