32 template <
typename ForwardIterator>
36 const bool indices_are_sorted)
38 const int n_elements = end -
begin;
44 if (indices_are_sorted ==
true && n_elements > 3)
52 for (; test1 !=
end; ++test, ++test1)
67 ForwardIterator my_it =
begin;
69 std::vector<size_type>::iterator it =
100 entries.insert(it, my_it, end);
106 std::vector<size_type>::iterator it2 = it + (end - my_it);
111 while (my_it != end && it2 !=
entries.end())
115 else if (*my_it == *it2)
142 ForwardIterator my_it =
begin;
146 if (stop_size >
entries.capacity())
150 std::vector<size_type>::iterator it, it2;
183 for (; my_it !=
end; ++my_it)
241 "This constructor can only be called if the provided argument " 242 "is the sparsity pattern for an empty matrix. This constructor can " 243 "not be used to copy-construct a non-empty sparsity pattern."));
287 "This operator can only be called if the provided argument " 288 "is the sparsity pattern for an empty matrix. This operator can " 289 "not be used to copy a non-empty sparsity pattern."));
292 ExcMessage(
"This operator can only be called if the current object is " 312 "The IndexSet argument to this function needs to either " 313 "be empty (indicating the complete set of rows), or have size " 314 "equal to the desired number of rows as specified by the " 315 "first argument to this function. (Of course, the number " 316 "of indices in this IndexSet may be less than the number " 317 "of rows, but the *size* of the IndexSet must be equal.)"));
320 lines.swap(new_lines);
334 return ((
rows == 0) && (
cols == 0));
346 for (
const auto &line :
lines)
348 m =
std::max(m, static_cast<size_type>(line.entries.size()));
364 "The row IndexSet does not contain the index i. This sparsity pattern " 365 "object cannot know whether the entry (i, j) exists or not."));
378 return std::binary_search(
lines[rowindex].entries.begin(),
379 lines[rowindex].entries.end(),
405 if (rowindex != row_entry)
406 add(row_entry, rowindex);
426 lines[rowindex].entries = std::vector<size_type>();
438 const auto end = rows.
end();
440 for (
auto it = rows.
begin(); it !=
end; ++it, ++view_row)
445 view.
lines[view_row].entries =
lines[rowindex].entries;
453 template <
typename SparsityPatternTypeLeft,
typename SparsityPatternTypeRight>
456 const SparsityPatternTypeLeft & sp_A,
457 const SparsityPatternTypeRight &sp_B)
459 Assert(sp_A.n_rows() == sp_B.n_rows(),
462 this->
reinit(sp_A.n_cols(), sp_B.n_cols());
469 std::vector<size_type> new_cols;
470 new_cols.reserve(sp_B.max_entries_per_row());
473 for (
size_type i = 0; i < sp_A.n_rows(); ++i)
476 new_cols.resize(sp_B.row_length(i));
478 const auto last_il = sp_B.end(i);
479 auto * col_ptr = new_cols.data();
480 for (
auto il = sp_B.begin(i); il != last_il; ++il)
481 *col_ptr++ = il->column();
483 std::sort(new_cols.begin(), new_cols.end());
486 const auto last_ik = sp_A.end(i);
487 for (
auto ik = sp_A.begin(i); ik != last_ik; ++ik)
488 this->
add_entries(ik->column(), new_cols.begin(), new_cols.end(),
true);
494 template <
typename SparsityPatternTypeLeft,
typename SparsityPatternTypeRight>
497 const SparsityPatternTypeLeft & left,
498 const SparsityPatternTypeRight &right)
500 Assert(left.n_cols() == right.n_rows(),
503 this->
reinit(left.n_rows(), right.n_cols());
505 typename SparsityPatternTypeLeft::iterator it_left = left.begin(),
506 end_left = left.end();
507 for (; it_left != end_left; ++it_left)
509 const unsigned int j = it_left->column();
515 typename SparsityPatternTypeRight::iterator it_right = right.begin(j),
516 end_right = right.end(j);
517 for (; it_right != end_right; ++it_right)
518 this->
add(it_left->row(), it_right->column());
531 for (
const auto entry :
lines[row].entries)
534 out <<
']' << std::endl;
550 for (
const auto entry :
lines[row].entries)
556 out << entry <<
" " << -
static_cast<signed int>(rowindex) << std::endl;
574 for (
const auto entry :
lines[row].entries)
575 if (static_cast<size_type>(
576 std::abs(static_cast<int>(rowindex - entry))) > b)
577 b = std::abs(static_cast<signed int>(rowindex - entry));
592 for (
const auto &line :
lines)
594 n += line.entries.size();
605 std::set<types::global_dof_index>
cols;
606 for (
const auto &line :
lines)
607 cols.insert(line.entries.begin(), line.entries.end());
622 std::vector<types::global_dof_index>
rows;
623 auto line =
lines.begin();
625 for (
const auto &row : locally_stored_rows)
627 if (line->entries.size() > 0)
647 for (
const auto &line :
lines)
669 const auto &
cols =
lines[local_row].entries;
672 if ((it !=
cols.end()) && (*it == col))
673 return (it -
cols.begin());
687 #ifndef DEAL_II_VECTOR_ITERATOR_IS_POINTER 690 std::vector<size_type>::iterator,
694 std::vector<size_type>::const_iterator,
695 std::vector<size_type>::const_iterator,
Iterator lower_bound(Iterator first, Iterator last, const T &val)
const types::global_dof_index invalid_size_type
void add_entries(const size_type row, ForwardIterator begin, ForwardIterator end, const bool indices_are_unique_and_sorted=false)
#define AssertDimension(dim1, dim2)
ElementIterator end() const
std::vector< Line > lines
std::vector< size_type > entries
void clear_row(const size_type row)
static ::ExceptionBase & ExcIO()
void add(const size_type i, const size_type j)
size_type max_entries_per_row() const
#define AssertIndexRange(index, range)
void add_indices(const ForwardIterator &begin, const ForwardIterator &end)
#define AssertThrow(cond, exc)
size_type memory_consumption() const
static ::ExceptionBase & ExcMessage(std::string arg1)
void compute_Tmmult_pattern(const SparsityPatternTypeLeft &left, const SparsityPatternTypeRight &right)
DynamicSparsityPattern get_view(const IndexSet &rows) const
#define Assert(cond, exc)
void add_entries(ForwardIterator begin, ForwardIterator end, const bool indices_are_sorted)
void reinit(const size_type m, const size_type n, const IndexSet &rowset=IndexSet())
static ::ExceptionBase & ExcDimensionMismatch(std::size_t arg1, std::size_t arg2)
size_type index_within_set(const size_type global_index) const
#define DEAL_II_NAMESPACE_CLOSE
void print_gnuplot(std::ostream &out) const
VectorType::value_type * end(VectorType &V)
SymmetricTensor< 2, dim, Number > b(const Tensor< 2, dim, Number > &F)
void compute_mmult_pattern(const SparsityPatternTypeLeft &left, const SparsityPatternTypeRight &right)
size_type memory_consumption() const
size_type n_nonzero_elements() const
static ::ExceptionBase & ExcNotQuadratic()
IndexSet complete_index_set(const IndexSet::size_type N)
types::global_dof_index size_type
DynamicSparsityPattern & operator=(const DynamicSparsityPattern &)
#define DEAL_II_NAMESPACE_OPEN
VectorType::value_type * begin(VectorType &V)
IndexSet nonempty_rows() const
void print(std::ostream &out) const
bool is_element(const size_type index) const
size_type bandwidth() const
bool exists(const size_type i, const size_type j) const
ElementIterator begin() const
size_type column_index(const size_type row, const size_type col) const
size_type n_elements() const
size_type nth_index_in_set(const size_type local_index) const
IndexSet nonempty_cols() const
T max(const T &t, const MPI_Comm &mpi_communicator)
std::enable_if< std::is_fundamental< T >::value, std::size_t >::type memory_consumption(const T &t)
static ::ExceptionBase & ExcInternalError()