You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to make spectral depend only on the num-traits crate instead on the num create? Compilation of the num-traits is a magnitude faster than the num, and the only place spectral uses the num library is use num::Float;
which could be changed into use num_traits::Float;
The text was updated successfully, but these errors were encountered:
Would it be possible to make spectral depend only on the num-traits crate instead on the num create? Compilation of the num-traits is a magnitude faster than the num, and the only place spectral uses the num library is
use num::Float;
which could be changed into
use num_traits::Float;
The text was updated successfully, but these errors were encountered: