summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorChristoph Groth <christoph.groth@cea.fr>2025-04-30 10:52:07 +0200
committerChristoph Groth <christoph.groth@cea.fr>2025-04-30 10:52:07 +0200
commit58916e3e1b9e668838e1cf8947ead046b47fd0e2 (patch)
tree3acada6e679d352ae4da9d8cafbf19bc205d4a05 /src/main.rs
parent425adfa8e2afd903d3900b9d9562f380d54bd9b4 (diff)
Catch up with upstream
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index b64fb7b..ccf5705 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -36,7 +36,7 @@ fn main() {
let _ = c[4];
// permute & transpose
- assert_eq!(c.permute([1, 0]), c.reorder());
+ assert_eq!(c.permute([1, 0]), c.transpose());
// Arrays with rank > 6:
let d: Vec<f64> = (0..128).map(|x| x as f64).collect();