- Deprecated members of namespace types.
- Namespace deal_II_numbers.
- MultithreadInfo::n_default_threads.
+ - Table::data.
<br>
<em>With headers in <code>deal.II/lac/</code>:</em>
// ---------------------------------------------------------------------
//
-// Copyright (C) 2002 - 2014 by the deal.II authors
+// Copyright (C) 2002 - 2015 by the deal.II authors
//
// This file is part of the deal.II library.
//
*/
typename AlignedVector<T>::const_reference el (const TableIndices<N> &indices) const;
- /**
- * @deprecated This function accesses data directly and should not be used!
- *
- * Direct read-only access to data field. Used by <tt>FullMatrix</tt> of the
- * LAC sublibrary (there even with a cast from const), otherwise, keep away!
- */
- typename AlignedVector<T>::const_pointer data () const DEAL_II_DEPRECATED;
-
protected:
/**
* Component-array.
-template <int N, typename T>
-inline
-typename AlignedVector<T>::const_pointer
-TableBase<N,T>::data () const
-{
- if (values.size() == 0)
- return typename AlignedVector<T>::const_pointer();
- else
- return &values[0];
-}
-
-
-
-
template <typename T>
inline
Table<1,T>::Table ()