1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![feature(in_band_lifetimes)]
#![feature(test)]

macro_rules! x  { ($x:ident) => { mod $x; pub use $x::*; } }
macro_rules! ix { 
    () => { 
        use crate::{ 
            imports::* , 
        };
    }
}

#[macro_use] mod imports;

extern crate test;

x![process];
x![process_2pole];
x![process_4pole];
x![coeff];
x![types];
x![obxd];

#[cfg(test)]
x![bench];