Skip to content
Snippets Groups Projects
Commit fd88a979 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

Changed overlapSize from 3 to 1.

Thanks to Lena for the hint.


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7936 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 61c4cbf4
No related branches found
No related tags found
No related merge requests found
...@@ -276,7 +276,7 @@ class BoxBiCGStabILU0Solver : public BoxLinearSolver<TypeTag> ...@@ -276,7 +276,7 @@ class BoxBiCGStabILU0Solver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxBiCGStabILU0Solver(const Problem &problem, int overlapSize = 3) BoxBiCGStabILU0Solver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
...@@ -307,7 +307,7 @@ class BoxBiCGStabSORSolver : public BoxLinearSolver<TypeTag> ...@@ -307,7 +307,7 @@ class BoxBiCGStabSORSolver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxBiCGStabSORSolver(const Problem &problem, int overlapSize = 3) BoxBiCGStabSORSolver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
...@@ -338,7 +338,7 @@ class BoxBiCGStabSSORSolver : public BoxLinearSolver<TypeTag> ...@@ -338,7 +338,7 @@ class BoxBiCGStabSSORSolver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxBiCGStabSSORSolver(const Problem &problem, int overlapSize = 3) BoxBiCGStabSSORSolver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
...@@ -369,7 +369,7 @@ class BoxBiCGStabJacSolver : public BoxLinearSolver<TypeTag> ...@@ -369,7 +369,7 @@ class BoxBiCGStabJacSolver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxBiCGStabJacSolver(const Problem &problem, int overlapSize = 3) BoxBiCGStabJacSolver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
...@@ -400,7 +400,7 @@ class BoxBiCGStabGSSolver : public BoxLinearSolver<TypeTag> ...@@ -400,7 +400,7 @@ class BoxBiCGStabGSSolver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxBiCGStabGSSolver(const Problem &problem, int overlapSize = 3) BoxBiCGStabGSSolver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
...@@ -431,7 +431,7 @@ class BoxCGILU0Solver : public BoxLinearSolver<TypeTag> ...@@ -431,7 +431,7 @@ class BoxCGILU0Solver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxCGILU0Solver(const Problem &problem, int overlapSize = 3) BoxCGILU0Solver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
...@@ -462,7 +462,7 @@ class BoxCGSORSolver : public BoxLinearSolver<TypeTag> ...@@ -462,7 +462,7 @@ class BoxCGSORSolver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxCGSORSolver(const Problem &problem, int overlapSize = 3) BoxCGSORSolver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
...@@ -493,7 +493,7 @@ class BoxCGSSORSolver : public BoxLinearSolver<TypeTag> ...@@ -493,7 +493,7 @@ class BoxCGSSORSolver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxCGSSORSolver(const Problem &problem, int overlapSize = 3) BoxCGSSORSolver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
...@@ -524,7 +524,7 @@ class BoxCGJacSolver : public BoxLinearSolver<TypeTag> ...@@ -524,7 +524,7 @@ class BoxCGJacSolver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxCGJacSolver(const Problem &problem, int overlapSize = 3) BoxCGJacSolver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
...@@ -555,7 +555,7 @@ class BoxCGGSSolver : public BoxLinearSolver<TypeTag> ...@@ -555,7 +555,7 @@ class BoxCGGSSolver : public BoxLinearSolver<TypeTag>
public: public:
template <class Problem> template <class Problem>
BoxCGGSSolver(const Problem &problem, int overlapSize = 3) BoxCGGSSolver(const Problem &problem, int overlapSize = 1)
: ParentType(problem, overlapSize) : ParentType(problem, overlapSize)
{} {}
......
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