Compute the noise coefficient along the path
(self, t)
| 76 | return self.alpha_t(t), self.alpha_dt_t(t) |
| 77 | |
| 78 | def compute_sigma_t(self, t): |
| 79 | """Compute the noise coefficient along the path""" |
| 80 | return self.sigma_t(t), self.sigma_dt_t(t) |
| 81 | |
| 82 | def compute_d_alpha_alpha_ratio_t(self, t): |
| 83 | """Compute the ratio between d_alpha and alpha""" |
no test coverage detected