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

[operators.lincomb] fix dims in factories

parent 856ab160
No related branches found
No related tags found
3 merge requests!10Draft: consolidate refactoring work,!5Work on refactor operators bindings,!1Refactor operators
...@@ -683,7 +683,7 @@ template <class MatrixType, // <- needs to be manually specified ...@@ -683,7 +683,7 @@ template <class MatrixType, // <- needs to be manually specified
size_t r, size_t r,
size_t rC, size_t rC,
class F> class F>
auto make_lincomb_operator(const SpaceInterface<GV, r, r, F>& space, auto make_lincomb_operator(const SpaceInterface<GV, r, rC, F>& space,
const std::string& logging_prefix = "", const std::string& logging_prefix = "",
const std::array<bool, 3>& logging_state = {{false, false, true}}) const std::array<bool, 3>& logging_state = {{false, false, true}})
{ {
...@@ -693,7 +693,7 @@ auto make_lincomb_operator(const SpaceInterface<GV, r, r, F>& space, ...@@ -693,7 +693,7 @@ auto make_lincomb_operator(const SpaceInterface<GV, r, r, F>& space,
} }
template <class GV, size_t r, size_t rC, class F> template <class GV, size_t r, size_t rC, class F>
auto make_lincomb_operator(const SpaceInterface<GV, r, r, F>& space, auto make_lincomb_operator(const SpaceInterface<GV, r, rC, F>& space,
const std::string& logging_prefix = "", const std::string& logging_prefix = "",
const std::array<bool, 3>& logging_state = {{false, false, true}}) const std::array<bool, 3>& logging_state = {{false, false, true}})
{ {
......
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