<h3>Specific improvements</h3>
<ol>
+<li> New: FETools::get_fe_from_name() can now return objects of type FE_Nothing.
+<br>
+(Jonathan Pitt, 2011/11/10)
+
<li> Changed: WorkStream now allocates one scratch object per thread instead of
one scratch object per item.
<br>
zero values (this was the case before and still is the default) are
kept in the linear system during the solution process.
<br>
-(Jรถrg Frohne, 2011/11/01)
+(Joerg Frohne, 2011/11/01)
<li> Fixed: SparseMatrix::mmult and SpareMatrix::Tmmult had a number of
issues that are now fixed: (i) rebuilding the sparsity pattern was allowed
(Wolfgang Bangerth, 2011/10/30)
<li> New:
-parallel::distributed::Triangulation<dim>::mesh_reconstruction_after_repartitioning
+parallel::distributed::Triangulation::mesh_reconstruction_after_repartitioning
setting which is necessary for save()/load() to be deterministic. Otherwise
the matrix assembly is done in a different order depending on the order of old
refinements.
#include <deal.II/fe/fe_dgp_nonparametric.h>
#include <deal.II/fe/fe_nedelec.h>
#include <deal.II/fe/fe_raviart_thomas.h>
+#include <deal.II/fe/fe_nothing.h>
#include <deal.II/fe/fe_system.h>
#include <deal.II/fe/fe_values.h>
#include <deal.II/fe/mapping_cartesian.h>
= FEFactoryPointer(new FETools::FEFactory<FE_DGQ<dim> >);
default_map["FE_Q"]
= FEFactoryPointer(new FETools::FEFactory<FE_Q<dim> >);
+ default_map["FE_Nothing"]
+ = FEFactoryPointer(new FETools::FEFactory<FE_Nothing<dim> >);
return default_map;
}