... | ... |
@@ -108,16 +108,6 @@ mNumCols(ncol) |
108 | 108 |
} |
109 | 109 |
} |
110 | 110 |
|
111 |
-// This should construct a matrix, only reading the columns in "whichCols" |
|
112 |
-// from the file. The matrix should have "nrow" rows and "whichCols.size()" |
|
113 |
-// columns. |
|
114 |
-template <class Parser> |
|
115 |
-RowMatrix(Parser &p, unsigned nrow, std::vector<unsigned> whichCols) |
|
116 |
-{ |
|
117 |
- |
|
118 |
- |
|
119 |
-} |
|
120 |
- |
|
121 | 111 |
// construct ColMatrix from file |
122 | 112 |
template <class Parser> |
123 | 113 |
ColMatrix::ColMatrix(Parser &p, unsigned nrow, unsigned ncol) : mNumRows(nrow), |
... | ... |
@@ -137,4 +127,19 @@ mNumCols(ncol) |
137 | 127 |
} |
138 | 128 |
} |
139 | 129 |
|
130 |
+// This should construct a matrix, only reading the columns in "whichCols" |
|
131 |
+// from the file. The matrix should have "nrow" rows and "whichCols.size()" |
|
132 |
+// columns. |
|
133 |
+template <class Parser> |
|
134 |
+RowMatrix::RowMatrix(Parser &p, unsigned nrow, std::vector<unsigned> whichCols) |
|
135 |
+{ |
|
136 |
+ // TODO implement |
|
137 |
+} |
|
138 |
+ |
|
139 |
+template <class Parser> |
|
140 |
+ColMatrix::ColMatrix(Parser &p, std::vector<unsigned> whichRows, unsigned ncol) |
|
141 |
+{ |
|
142 |
+ // TODO implement |
|
143 |
+} |
|
144 |
+ |
|
140 | 145 |
#endif |
141 | 146 |
\ No newline at end of file |