
Module: ppl/ppl Branch: sparse_matrices Commit: 86958cc77c3e82b205156cd5c9d2880e173e399f URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=86958cc77c3e8...
Author: Marco Poletti poletti.marco@gmail.com Date: Wed Mar 17 23:07:25 2010 +0100
PIP_Problem: add typedefs for matrix_row_copy_iterator and matrix_row_copy_const_iterator.
---
src/PIP_Problem.defs.hh | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/PIP_Problem.defs.hh b/src/PIP_Problem.defs.hh index 6bb28da..51f7547 100644 --- a/src/PIP_Problem.defs.hh +++ b/src/PIP_Problem.defs.hh @@ -342,6 +342,8 @@ public: typedef Dense_Row::iterator matrix_row_iterator; typedef Dense_Row::const_iterator matrix_row_const_iterator; typedef Dense_Row matrix_row_copy_type; + typedef Dense_Row::iterator matrix_row_copy_iterator; + typedef Dense_Row::const_iterator matrix_row_copy_const_iterator; #else typedef Sparse_Matrix matrix_type; typedef Sparse_Row_Reference matrix_row_reference_type; @@ -351,6 +353,8 @@ public: typedef Sparse_Row_Reference::iterator matrix_row_iterator; typedef Sparse_Row_Reference::const_iterator matrix_row_const_iterator; typedef Sparse_Row matrix_row_copy_type; + typedef Sparse_Row::iterator matrix_row_copy_iterator; + typedef Sparse_Row::const_iterator matrix_row_copy_const_iterator; #endif
//! Builds a trivial PIP problem.