- Member BlockVector::scale (const value_type factor)
- Use
operator*=
instead.
- Member DoFTools::make_sparsity_pattern (const DH &dof, const std::vector< std::vector< bool > > &mask, SparsityPattern &sparsity_pattern)
- This is the old form of the previous function. It generates a table of DoFTools::Coupling values and calls it.
- Member DoFTools::count_dofs_per_component (const DoFHandler< dim, spacedim > &dof_handler, std::vector< unsigned int > &dofs_per_component, std::vector< unsigned int > target_component)
- See the previous function with the same name for a description. This function exists for compatibility with older versions only.
- Member FEValuesBase::shape_2nd_derivative (const unsigned int function_no, const unsigned int point_no) const
- Wrapper for shape_hessian()
- Member FEValuesBase::shape_2nd_derivative_component (const unsigned int function_no, const unsigned int point_no, const unsigned int component) const
- Wrapper for shape_hessian_component()
- Member FEValuesBase::get_function_grads (const InputVector &fe_function, std::vector< Tensor< 1, spacedim > > &gradients) const
- Use get_function_gradients() instead.
- Member FEValuesBase::get_function_grads (const InputVector &fe_function, std::vector< std::vector< Tensor< 1, spacedim > > > &gradients) const
- Use get_function_gradients() instead.
- Member FEValuesBase::get_function_grads (const InputVector &fe_function, const VectorSlice< const std::vector< unsigned int > > &indices, std::vector< Tensor< 1, spacedim > > &gradients) const
- Use get_function_gradients() instead.
- Member FEValuesBase::get_function_grads (const InputVector &fe_function, const VectorSlice< const std::vector< unsigned int > > &indices, std::vector< std::vector< Tensor< 1, spacedim > > > &gradients, bool quadrature_points_fastest=false) const
- Use get_function_gradients() instead.
- Member FEValuesBase::get_function_2nd_derivatives (const InputVector &, std::vector< Tensor< 2, spacedim > > &) const
- Wrapper for get_function_hessians()
- Member FEValuesBase::get_function_2nd_derivatives (const InputVector &, std::vector< std::vector< Tensor< 2, spacedim > > > &, bool=false) const
- Wrapper for get_function_hessians()
- Member FiniteElementData::face_to_equivalent_cell_index (const unsigned int index) const
- This function is just a special version of face_to_cell_index for the face zero. It is therefore of limited use in aplications and most of the time, the other function is what is required.
- Member Mapping::transform_covariant (const VectorSlice< const std::vector< Tensor< 1, dim > > > input, const unsigned int offset, VectorSlice< std::vector< Tensor< 1, spacedim > > > output, const InternalDataBase &internal) const
- Use transform() instead.
- Member Mapping::transform_covariant (const VectorSlice< const std::vector< Tensor< 2, dim > > > input, const unsigned int offset, VectorSlice< std::vector< Tensor< 2, spacedim > > > output, const InternalDataBase &internal) const
- Use transform() instead.
- Member Mapping::transform_contravariant (const VectorSlice< const std::vector< Tensor< 1, dim > > > input, const unsigned int offset, VectorSlice< std::vector< Tensor< 1, spacedim > > > output, const typename Mapping< dim, spacedim >::InternalDataBase &internal) const
- Use transform() instead.
- Member Mapping::transform_contravariant (const VectorSlice< const std::vector< Tensor< 2, dim > > > intput, const unsigned int offset, const VectorSlice< std::vector< Tensor< 2, spacedim > > > output, const typename Mapping< dim, spacedim >::InternalDataBase &internal) const
- Use transform() instead.
- Member MGTools::count_dofs_per_component (const MGDoFHandler< dim, spacedim > &mg_dof, std::vector< std::vector< unsigned int > > &result, std::vector< unsigned int > target_component)
- Wrapper for the other function with same name, introduced for compatibility.
- Member Multigrid::vmult (VECTOR &dst, const VECTOR &src) const
- This function is purely experimental and will probably never be implemented in a way that it can be released.
- Member Multigrid::vmult_add (VECTOR &dst, const VECTOR &src) const
- This function is purely experimental and will probably never be implemented in a way that it can be released.
- Member Multigrid::Tvmult (VECTOR &dst, const VECTOR &src) const
- Even worse than vmult(), this function is not even implemented, but just declared such that certain objects relying on it can be constructed.
- Member Multigrid::Tvmult_add (VECTOR &dst, const VECTOR &src) const
- Even worse than vmult(), this function is not even implemented, but just declared such that certain objects relying on it can be constructed.
- Class PreconditionedMatrix< MATRIX, PRECOND, VECTOR >
- Use ProductMatrix instead.
- Class QGauss2< dim >
- Use QGauss for arbitrary order Gauss formulae instead!
- Class QGauss3< dim >
- Use QGauss for arbitrary order Gauss formulae instead!
- Class QGauss4< dim >
- Use QGauss for arbitrary order Gauss formulae instead!
- Class QGauss5< dim >
- Use QGauss for arbitrary order Gauss formulae instead!
- Class QGauss6< dim >
- Use QGauss for arbitrary order Gauss formulae instead!
- Class QGauss7< dim >
- Use QGauss for arbitrary order Gauss formulae instead!
- Member Quadrature::n_quadrature_points
- Use size() instead.
- Member SmartPointer::SmartPointer ()
- Since this constructor will leave SmartPointer::id empty, it should be avoided wherever possible and replaced by SmartPointer(0,id).
- Member SparseILU::SparseILU (const SparsityPattern &sparsity)
- This method is deprecated, and left for backward compability. It will be removed in later versions.
- Member SparseLUDecomposition::reinit (const SparsityPattern &sparsity)
- Member SparseLUDecomposition::decompose (const SparseMatrix< somenumber > &matrix, const double strengthen_diagonal=0.)
- Member SparseLUDecomposition::is_decomposed () const
- Member SparseMatrix::raw_entry (const unsigned int row, const unsigned int index) const
- Use iterator or const_iterator instead!
- Member SparsityPattern::operator() (const unsigned int i, const unsigned int j) const
- Use SparseMatrix::const_iterator
- Member SparsityPattern::partition (const unsigned int n_partitions, std::vector< unsigned int > &partition_indices) const
- Member SparsityPattern::get_column_numbers () const
- . Use
row_length
and column_number
instead. Also, using iterators may get you most of the information you may want.
- Member TableBase::data () const
- This function accesses data directly and should not be used!
- Member Triangulation::clear_user_pointers ()
- User clear_user_data() instead.
- Member VectorTools::interpolate_boundary_values (const Mapping< DH::dimension, DH::space_dimension > &mapping, const DH &dof, const unsigned char boundary_component, const Function< DH::space_dimension > &boundary_function, std::map< unsigned int, double > &boundary_values, const std::vector< bool > &component_mask=stdvector< bool >())
- This function is there mainly for backward compatibility.
- Member VectorTools::interpolate_boundary_values (const Mapping< DH::dimension, DH::space_dimension > &mapping, const DH &dof, const unsigned char boundary_component, const Function< DH::space_dimension > &boundary_function, ConstraintMatrix &constraints, const std::vector< bool > &component_mask=stdvector< bool >())
- This function is there mainly for backward compatibility.
- Member Threads::ThreadMutex
- Member Threads::ThreadCondition
- Member DoFRenumbering::cell_wise_dg (DH &dof_handler, const std::vector< typename DH::cell_iterator > &cell_order)
- Use cell_wise() instead.
- Member DoFRenumbering::cell_wise_dg (MGDoFHandler< dim > &dof_handler, const unsigned int level, const std::vector< typename MGDoFHandler< dim >::cell_iterator > &cell_order)
- Use cell_wise() instead.
- Member DoFRenumbering::downstream_dg (DH &dof_handler, const Point< dim > &direction)
- Use downstream() instead.
- Member DoFRenumbering::downstream_dg (MGDoFHandler< dim > &dof_handler, const unsigned int level, const Point< dim > &direction)
- Use downstream() instead.
- Member DoFRenumbering::compute_downstream_dg (std::vector< unsigned int > &new_dof_indices, const DH &dof_handler, const Point< dim > &direction)
- The new function of this name computes the renumbering and its inverse at the same time. So, at least if you need both, you should use the other one.
- Member DoFRenumbering::compute_downstream_dg (std::vector< unsigned int > &new_dof_indices, std::vector< unsigned int > &reverse, const DH &dof_handler, const Point< dim > &direction)
- Use compute_downstream() instead
- Member DoFRenumbering::compute_downstream_dg (std::vector< unsigned int > &new_dof_indices, std::vector< unsigned int > &reverse, const MGDoFHandler< dim > &dof_handler, const unsigned int level, const Point< dim > &direction)
- Use compute_downstream() instead
- Member update_q_points
- Update quadrature points
- Member update_second_derivatives
- Update second derivatives.
- Member update_normal_vectors
- Update normal vectors. Use update_face_normal_vectors
- Member CompressedBlockSparsityPattern
documentation generated on Sat Aug 15 16:51:35 2009 by
doxygen
1.5.9