diff options
| author | Christoph Groth <christoph.groth@cea.fr> | 2025-04-30 10:52:07 +0200 |
|---|---|---|
| committer | Christoph Groth <christoph.groth@cea.fr> | 2025-04-30 10:52:07 +0200 |
| commit | 58916e3e1b9e668838e1cf8947ead046b47fd0e2 (patch) | |
| tree | 3acada6e679d352ae4da9d8cafbf19bc205d4a05 /src/main.rs | |
| parent | 425adfa8e2afd903d3900b9d9562f380d54bd9b4 (diff) | |
Catch up with upstream
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
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(); |
