*/
void equ (const value_type a, const BlockVectorBase& V,
const value_type b, const BlockVectorBase& W);
+
+ /**
+ * Estimate for the memory
+ * consumption (not implemented
+ * for this class).
+ */
+ unsigned int memory_consumption () const;
protected:
/**
}
+
+template <class VectorType>
+unsigned int BlockVectorBase<VectorType>::memory_consumption () const
+{
+ AssertThrow(false, ExcNotImplemented() );
+ return 0;
+}
+
+
+
template <class VectorType>
template <class BlockVector2>
void BlockVectorBase<VectorType>::equ (const value_type a,
* vector.
*/
operator const Vec & () const;
+
+ /**
+ * Estimate for the memory
+ * consumption (not implemented
+ * for this class).
+ */
+ unsigned int memory_consumption () const;
protected:
/**
+ unsigned int
+ VectorBase::memory_consumption () const
+ {
+ AssertThrow(false, ExcNotImplemented() );
+ return 0;
+ }
+
+
+
void
VectorBase::do_set_add_operation (const std::vector<unsigned int> &indices,
const std::vector<PetscScalar> &values,
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams