Skip to content

Commit 249819e

Browse files
remove accidentally added auto-lines
1 parent 0242d8f commit 249819e

File tree

1 file changed

+0
-24
lines changed
  • src/integer_mod_q/mat_zq

1 file changed

+0
-24
lines changed

src/integer_mod_q/mat_zq/get.rs

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -270,30 +270,6 @@ impl MatrixGetSubmatrix for MatZq {
270270
modulus: self.get_mod(),
271271
})
272272
}
273-
274-
fn get_rows(&self) -> Vec<Self> {
275-
let mut rows = std::vec![];
276-
277-
for i in 0..self.get_num_rows() {
278-
// replace with self.get_row_unchecked once available
279-
let entry = self.get_row(i).unwrap();
280-
rows.push(entry);
281-
}
282-
283-
rows
284-
}
285-
286-
fn get_columns(&self) -> Vec<Self> {
287-
let mut columns = std::vec![];
288-
289-
for i in 0..self.get_num_columns() {
290-
// replace with self.get_column_unchecked once available
291-
let entry = self.get_column(i).unwrap();
292-
columns.push(entry);
293-
}
294-
295-
columns
296-
}
297273
}
298274

299275
impl MatZq {

0 commit comments

Comments
 (0)