From e2a8189283219c06e951e5cc48f9fb0a5f4de515 Mon Sep 17 00:00:00 2001 From: guido Date: Thu, 16 Sep 2004 14:45:06 +0000 Subject: [PATCH] bug and news git-svn-id: https://svn.dealii.org/trunk@9624 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/numerics/data_out.cc | 2 +- deal.II/doc/news/c-5.0.html | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/deal.II/deal.II/source/numerics/data_out.cc b/deal.II/deal.II/source/numerics/data_out.cc index 2df2e5d2b9..6f39903eb3 100644 --- a/deal.II/deal.II/source/numerics/data_out.cc +++ b/deal.II/deal.II/source/numerics/data_out.cc @@ -176,7 +176,7 @@ add_data_vector (const VECTOR &vec, // vectors Assert ((vec.size() == dofs->get_tria().n_active_cells()) || (vec.size() == dofs->n_dofs()), - ExcDimensionMismatch(vec.size(), + ExcInvalidVectorSize(vec.size(), dofs->n_dofs(), dofs->get_tria().n_active_cells())); diff --git a/deal.II/doc/news/c-5.0.html b/deal.II/doc/news/c-5.0.html index 88ad8e6883..cb8963feae 100644 --- a/deal.II/doc/news/c-5.0.html +++ b/deal.II/doc/news/c-5.0.html @@ -73,6 +73,16 @@ inconvenience this causes.

General

    + +
  1. + Improved: the documentation generated by Doxygen now states the header + file defining a class. Furthermore, all deal.II + exceptions are listed as classes and will soon be found in the module + Exceptions. +
    + (GK 2004/09/16) +

    +
  2. New: configuration option --with-umfpack for using the UMFPack version and enabling the class base

      + +
    1. New: a class template SliceVector allows + access to consecutive portions os a vector. +
      + (GK 2004/09/16) +

      +
    2. New: The classes TableIndices<N> and Table<N,T> are now implemented also -- 2.39.5