heaviside = |x| { if x < 0 { return 0; } elif x == 0 { return 0.5; } else { return 1; } }; return heaviside(0);