Skip to content

Commit

Permalink
cheng: Fix SIMD imports
Browse files Browse the repository at this point in the history
Note that SIMD is actually worse at the moment.
  • Loading branch information
francorbacho committed Jan 9, 2024
1 parent bb48923 commit e6bb9e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cheng/src/side_state/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub mod iterator;

#[cfg(feature = "simd")]
use std::simd::{Simd, SimdOrd, SimdPartialEq, SimdUint};
use std::simd::{cmp::SimdPartialEq, num::SimdUint, Simd};

use crate::{
board::BoardMask,
Expand Down

0 comments on commit e6bb9e7

Please sign in to comment.