Skip to content
Snippets Groups Projects
Commit 79e8131c authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Remove trailing whitespace

[[Imported from SVN: r9428]]
parent 2f81ce9a
No related branches found
No related tags found
No related merge requests found
...@@ -21,10 +21,10 @@ ...@@ -21,10 +21,10 @@
/** \brief Riemannian trust-region solver for geodesic finite-element problems */ /** \brief Riemannian trust-region solver for geodesic finite-element problems */
template <class GridType, class TargetSpace> template <class GridType, class TargetSpace>
class RiemannianTrustRegionSolver class RiemannianTrustRegionSolver
: public IterativeSolver<std::vector<TargetSpace>, : public IterativeSolver<std::vector<TargetSpace>,
Dune::BitSetVector<TargetSpace::TangentVector::dimension> > Dune::BitSetVector<TargetSpace::TangentVector::dimension> >
{ {
const static int blocksize = TargetSpace::TangentVector::dimension; const static int blocksize = TargetSpace::TangentVector::dimension;
const static int gridDim = GridType::dimension; const static int gridDim = GridType::dimension;
...@@ -53,7 +53,7 @@ public: ...@@ -53,7 +53,7 @@ public:
{} {}
/** \brief Set up the solver using a monotone multigrid method as the inner solver */ /** \brief Set up the solver using a monotone multigrid method as the inner solver */
void setup(const GridType& grid, void setup(const GridType& grid,
const GeodesicFEAssembler<BasisType, TargetSpace>* assembler, const GeodesicFEAssembler<BasisType, TargetSpace>* assembler,
const SolutionType& x, const SolutionType& x,
const Dune::BitSetVector<blocksize>& dirichletNodes, const Dune::BitSetVector<blocksize>& dirichletNodes,
...@@ -62,13 +62,13 @@ public: ...@@ -62,13 +62,13 @@ public:
double initialTrustRegionRadius, double initialTrustRegionRadius,
int multigridIterations, int multigridIterations,
double mgTolerance, double mgTolerance,
int mu, int mu,
int nu1, int nu1,
int nu2, int nu2,
int baseIterations, int baseIterations,
double baseTolerance, double baseTolerance,
bool instrumented); bool instrumented);
void setIgnoreNodes(const Dune::BitSetVector<blocksize>& ignoreNodes) void setIgnoreNodes(const Dune::BitSetVector<blocksize>& ignoreNodes)
{ {
ignoreNodes_ = &ignoreNodes; ignoreNodes_ = &ignoreNodes;
...@@ -123,7 +123,7 @@ protected: ...@@ -123,7 +123,7 @@ protected:
/** \brief The norm used to measure multigrid convergence */ /** \brief The norm used to measure multigrid convergence */
H1SemiNorm<CorrectionType>* h1SemiNorm_; H1SemiNorm<CorrectionType>* h1SemiNorm_;
/** \brief If set to true we log convergence speed and other stuff */ /** \brief If set to true we log convergence speed and other stuff */
bool instrumented_; bool instrumented_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment