rustitude 0.1.3

A library to create and operate models for particle physics amplitude analyses
Documentation
1
2
3
4
5
6
7
8
9
10
//! Build specs for different LA systems

/// Links to Accelerate framework on MacOS running
#[cfg(target_os = "macos")]
fn main() {
    #[cfg(feature = "intel-mkl-system")]
    println!("cargo:rustc-link-lib=framework=Accelerate");
}

fn main() {}