File tree 1 file changed +12
-12
lines changed
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -38,18 +38,6 @@ class Combination : public EnableLinOp<Combination<ValueType>>,
38
38
using value_type = ValueType;
39
39
using transposed_type = Combination<ValueType>;
40
40
41
- /* *
42
- * Creates an empty linear combination with given size.
43
- *
44
- * @param exec Executor associated to the linear combination
45
- */
46
- explicit Combination (std::shared_ptr<const Executor> exec,
47
- const gko::dim<2 >& size)
48
- : EnableLinOp<Combination>(exec)
49
- {
50
- this ->set_size (size);
51
- }
52
-
53
41
54
42
/* *
55
43
* Returns a list of coefficients of the combination.
@@ -134,6 +122,18 @@ class Combination : public EnableLinOp<Combination<ValueType>>,
134
122
: EnableLinOp<Combination>(exec)
135
123
{}
136
124
125
+ /* *
126
+ * Creates an empty linear combination with given size.
127
+ *
128
+ * @param exec Executor associated to the linear combination
129
+ */
130
+ explicit Combination (std::shared_ptr<const Executor> exec,
131
+ const gko::dim<2 >& size)
132
+ : EnableLinOp<Combination>(exec)
133
+ {
134
+ this ->set_size (size);
135
+ }
136
+
137
137
/* *
138
138
* Creates a linear combination of operators using the specified list of
139
139
* coefficients and operators.
You can’t perform that action at this time.
0 commit comments