Skip to content
Snippets Groups Projects
Commit d2e46637 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

Revert "[operators] do not be unconditionally linear"

This reverts commit 61cf3181.
parent 3a56d0f1
No related branches found
No related tags found
No related merge requests found
Pipeline #65246 failed
......@@ -129,11 +129,6 @@ public:
AdvectionDgOperator(ThisType&& source) = default;
bool linear() const override final
{
return numerical_flux_->linear();
}
using BaseType::append;
/// \name Non-periodic boundary treatment
......
......@@ -88,11 +88,6 @@ public:
, periodicity_exception_(std::move(source.periodicity_exception_))
{}
bool linear() const override final
{
return numerical_flux_->linear();
}
using BaseType::append;
/// \name Non-periodic boundary treatment
......
......@@ -280,11 +280,17 @@ public:
, assembly_grid_view_(assembly_grid_view)
, source_space_(source_space)
, range_space_(range_space)
, linear_(true)
, use_tbb_(use_tbb)
{}
LocalizableOperator(ThisType&& source) = default;
bool linear() const override final
{
return linear_;
}
const SourceSpaceType& source_space() const override final
{
return source_space_;
......
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