(t, b, c, d)
| 13 | |
| 14 | |
| 15 | def OUT_QUART(t, b, c, d): |
| 16 | t = float(t) |
| 17 | b = float(b) |
| 18 | c = float(c) |
| 19 | d = float(d) |
| 20 | |
| 21 | t = t / d - 1 |
| 22 | |
| 23 | return -c * (t * t * t * t - 1) + b |
| 24 | |
| 25 | |
| 26 | def INOUT_CIRC(t, b, c, d): |
nothing calls this directly
no outgoing calls
no test coverage detected