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

[functions.combined] added dimensions for sum

parent 79e43752
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,14 @@ private:
static const unsigned int rC = rC_in;
};
template <int r_in, int rC_in, bool anything>
class Dimension<r_in, r_in, rC_in, rC_in, Combination::sum, anything>
{
public:
static const unsigned int r = r_in;
static const unsigned int rC = rC_in;
};
public:
static const unsigned int r = Dimension<L::dimRange, R::dimRange, L::dimRangeCols, R::dimRangeCols, comb>::r;
static const unsigned int rC = Dimension<L::dimRange, R::dimRange, L::dimRangeCols, R::dimRangeCols, comb>::rC;
......
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