// ---------------------------------------------------------------------
//
-// Copyright (C) 2000 - 2014 by the deal.II authors
+// Copyright (C) 2000 - 2015 by the deal.II authors
//
// This file is part of the deal.II library.
//
std::vector<Tensor<1,2> > &grads,
std::vector< Tensor<2,2> > &grad_grads) const
{
- if (values.empty() == false) //nur dann was tun
+ if (values.empty() == false) // do not bother if empty
{
for (unsigned int i=0; i<values.size(); ++i)
{
}
}
- if (grads.empty() == false) //nur dann was tun
+ if (grads.empty() == false) // do not bother if empty
{
for (unsigned int i=0; i<grads.size(); ++i)
{
}
}
- if (grad_grads.empty() == false) //nur dann was tun
+ if (grad_grads.empty() == false) // do not bother if empty
{
for (unsigned int i=0; i<grad_grads.size(); ++i)
{