<< filename << "> for reading." << std::endl;
if (!optional)
{
- std:: cerr << "Trying to make file <"
- << filename << "> with default values for you." << std::endl;
+ std::cerr << "Trying to make file <"
+ << filename << "> with default values for you." << std::endl;
std::ofstream output (filename.c_str());
if (output)
print_parameters (output, (write_compact ? ShortText : Text));
// ---------------------------------------------------------------------
//
-// Copyright (C) 2004 - 2015 by the deal.II authors
+// Copyright (C) 2004 - 2016 by the deal.II authors
//
// This file is part of the deal.II library.
//
}
template <typename number>
-PolynomialsBernstein<number>:: PolynomialsBernstein (
+PolynomialsBernstein<number>::PolynomialsBernstein (
const unsigned int index, const unsigned int degree)
:
Polynomials::Polynomial<number>(
std::vector<NumberCache> &number_caches) const
{
// first, call the sequential function to distribute dofs
- Sequential<dim,spacedim>:: distribute_mg_dofs (dof_handler, number_caches);
+ Sequential<dim,spacedim>::distribute_mg_dofs (dof_handler, number_caches);
// now we need to update the number cache.
// This part is not yet implemented.
AssertThrow(false,ExcNotImplemented());
// ---------------------------------------------------------------------
//
-// Copyright (C) 1999 - 2015 by the deal.II authors
+// Copyright (C) 1999 - 2016 by the deal.II authors
//
// This file is part of the deal.II library.
//
//Normal field without unit length
template <>
Point<3>
-TorusBoundary<2,3>:: get_surf_norm_from_sp(const Point<2> &surfP) const
+TorusBoundary<2,3>::get_surf_norm_from_sp(const Point<2> &surfP) const
{
Point<3> n;
// ---------------------------------------------------------------------
//
-// Copyright (C) 2008 - 2015 by the deal.II authors
+// Copyright (C) 2008 - 2016 by the deal.II authors
//
// This file is part of the deal.II library.
//
void
- PreconditionAMG:: initialize (const SparseMatrix &matrix,
- const AdditionalData &additional_data)
+ PreconditionAMG::initialize (const SparseMatrix &matrix,
+ const AdditionalData &additional_data)
{
initialize(matrix.trilinos_matrix(), additional_data);
}
void
- PreconditionAMG:: initialize (const Epetra_RowMatrix &matrix,
- const AdditionalData &additional_data)
+ PreconditionAMG::initialize (const Epetra_RowMatrix &matrix,
+ const AdditionalData &additional_data)
{
// Build the AMG preconditioner.
Teuchos::ParameterList parameter_list;