bubbles 3.1.1

Bubble integration server for powder diffraction
1
2
3
4
5
6
7
8
9
#[macro_export]
macro_rules! die {
    () => (eprint!("\n"));
    ($fmt:expr) => (eprint!(concat!($fmt, "\n")));
    ($fmt:expr, $($arg:tt)*) => ({
        eprint!(concat!($fmt, "\n"), $($arg)*);
        std::process::exit(-1);
    });
}