Skip to content
Snippets Groups Projects
Commit 2a9828b1 authored by René Fritze's avatar René Fritze Committed by Dr. Felix Tobias Schindler
Browse files

[test.projection] adjust tolerances for ALU

parent d14629b7
No related branches found
No related tags found
No related merge requests found
Showing
with 32 additions and 22 deletions
......@@ -34,9 +34,9 @@ TYPED_TEST(WeightedL2LocalizableProductTest, correct_for_constant_arguments)
}
TYPED_TEST(WeightedL2LocalizableProductTest, correct_for_linear_arguments)
{
this->correct_for_linear_arguments(this->dimDomain == 3 ? 5.33e-15 : 1.78e-15);
this->correct_for_linear_arguments(this->dimDomain == 3 ? 5.33e-15 : 3.57e-15);
}
TYPED_TEST(WeightedL2LocalizableProductTest, correct_for_quadratic_arguments)
{
this->correct_for_quadratic_arguments(1.78e-15);
this->correct_for_quadratic_arguments(3.57e-15);
}
......@@ -38,7 +38,10 @@ TYPED_TEST(L2ProjectionOperatorTest, free_function_callable)
}
TYPED_TEST(L2ProjectionOperatorTest, produces_correct_results)
{
this->produces_correct_results();
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? L2ProjectionLocalizableOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -38,7 +38,10 @@ TYPED_TEST(L2ProjectionOperatorTest, free_function_callable)
}
TYPED_TEST(L2ProjectionOperatorTest, produces_correct_results)
{
this->produces_correct_results();
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? L2ProjectionLocalizableOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -34,7 +34,10 @@ TYPED_TEST(L2GlobalProjectionOperatorTest, constructible_by_factory)
}
TYPED_TEST(L2GlobalProjectionOperatorTest, produces_correct_results)
{
this->produces_correct_results();
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? L2ProjectionLocalizableOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -34,8 +34,8 @@ TYPED_TEST(L2GlobalProjectionOperatorTest, constructible_by_factory)
TYPED_TEST(L2GlobalProjectionOperatorTest, produces_correct_results)
{
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance =
Dune::Stuff::Grid::is_alugrid<Grid>::value ? 3.8e-11 : LocalizableProjectionOperator_default_tolerance;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? LocalizableProjectionOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -35,8 +35,8 @@ TYPED_TEST(L2GlobalProjectionLocalizableOperatorTest, constructible_by_factory)
TYPED_TEST(L2GlobalProjectionLocalizableOperatorTest, produces_correct_results)
{
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance =
Dune::Stuff::Grid::is_alugrid<Grid>::value ? 3.8e-11 : LocalizableProjectionOperator_default_tolerance;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? LocalizableProjectionOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -35,8 +35,8 @@ TYPED_TEST(L2GlobalProjectionLocalizableOperatorTest, constructible_by_factory)
TYPED_TEST(L2GlobalProjectionLocalizableOperatorTest, produces_correct_results)
{
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance =
Dune::Stuff::Grid::is_alugrid<Grid>::value ? 3.8e-11 : LocalizableProjectionOperator_default_tolerance;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? LocalizableProjectionOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -35,8 +35,8 @@ TYPED_TEST(L2LocalProjectionLocalizableOperatorTest, constructible_by_factory)
TYPED_TEST(L2LocalProjectionLocalizableOperatorTest, produces_correct_results)
{
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance =
Dune::Stuff::Grid::is_alugrid<Grid>::value ? 3.8e-11 : LocalizableProjectionOperator_default_tolerance;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? LocalizableProjectionOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -34,7 +34,7 @@ TYPED_TEST(L2LocalProjectionLocalizableOperatorTest, constructible_by_factory)
}
TYPED_TEST(L2LocalProjectionLocalizableOperatorTest, produces_correct_results)
{
this->produces_correct_results();
this->produces_correct_results(LocalizableProjectionOperator_default_tolerance);
}
......
......@@ -35,8 +35,9 @@ TYPED_TEST(L2ProjectionLocalizableOperatorTest, constructible_by_factory)
TYPED_TEST(L2ProjectionLocalizableOperatorTest, produces_correct_results)
{
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance =
Dune::Stuff::Grid::is_alugrid<Grid>::value ? 1e-11 : LocalizableProjectionOperator_default_tolerance;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? L2ProjectionLocalizableOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -35,8 +35,8 @@ TYPED_TEST(L2ProjectionLocalizableOperatorTest, constructible_by_factory)
TYPED_TEST(L2ProjectionLocalizableOperatorTest, produces_correct_results)
{
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance =
Dune::Stuff::Grid::is_alugrid<Grid>::value ? 3.8e-11 : LocalizableProjectionOperator_default_tolerance;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? LocalizableProjectionOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -34,7 +34,7 @@ TYPED_TEST(L2ProjectionLocalizableOperatorTest, constructible_by_factory)
}
TYPED_TEST(L2ProjectionLocalizableOperatorTest, produces_correct_results)
{
this->produces_correct_results();
this->produces_correct_results(LocalizableProjectionOperator_default_tolerance);
}
......
......@@ -35,8 +35,8 @@ TYPED_TEST(L2ProjectionLocalizableOperatorTest, constructible_by_factory)
TYPED_TEST(L2ProjectionLocalizableOperatorTest, produces_correct_results)
{
typedef typename TypeParam::GridViewType::Grid Grid;
const auto tolerance =
Dune::Stuff::Grid::is_alugrid<Grid>::value ? 3.8e-11 : LocalizableProjectionOperator_default_tolerance;
const auto tolerance = Dune::Stuff::Grid::is_alugrid<Grid>::value ? LocalizableProjectionOperator_alugrid_tolerance
: LocalizableProjectionOperator_default_tolerance;
this->produces_correct_results(tolerance);
}
......
......@@ -34,7 +34,7 @@ TYPED_TEST(LagrangeProjectionLocalizableOperatorTest, constructible_by_factory)
}
TYPED_TEST(LagrangeProjectionLocalizableOperatorTest, produces_correct_results)
{
this->produces_correct_results();
this->produces_correct_results(LocalizableProjectionOperator_default_tolerance);
}
......
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