Remove unused function.

This commit is contained in:
Matthew Gordon 2019-12-21 09:57:30 -05:00
parent e1de889d3a
commit 7cdcdb145a
1 changed files with 0 additions and 6 deletions

View File

@ -261,12 +261,6 @@ mod tests {
use super::*; use super::*;
use quickcheck_macros::quickcheck; use quickcheck_macros::quickcheck;
#[quickcheck]
fn permute_and_reverse_yields_input(v: Vector3<f32>) -> bool {
let indices = indices_with_index_of_largest_element_last(&v);
v == reverse_permute_vector_elements(&permute_vector_elements(&v, &indices), &indices)
}
#[quickcheck] #[quickcheck]
fn last_index_is_greater_than_or_equal_to_x(v: Vector3<f32>) -> bool { fn last_index_is_greater_than_or_equal_to_x(v: Vector3<f32>) -> bool {
let p = permute_vector_elements(&v, &indices_with_index_of_largest_element_last(&v)); let p = permute_vector_elements(&v, &indices_with_index_of_largest_element_last(&v));