line |
l |
!l&&r |
!l&&!r |
condition |
145
|
1 |
1 |
0 |
$rel_err ||= $Math::Integral::Romberg::rel_err |
146
|
1 |
1 |
0 |
$abs_err ||= $Math::Integral::Romberg::abs_err |
147
|
1 |
1 |
0 |
$max_split ||= $Math::Integral::Romberg::max_split |
148
|
1 |
1 |
0 |
$min_split ||= $Math::Integral::Romberg::min_split |
166
|
0 |
0 |
13 |
$lo + $step_len / $steps == $lo or $hi - $step_len / $steps == $hi |
196
|
0 |
1 |
3 |
abs $new_estimate - $estimate < $abs_err || abs $new_estimate - $estimate < $rel_err * abs($estimate) |
|
1 |
0 |
12 |
$split >= $min_split and abs $new_estimate - $estimate < $abs_err || abs $new_estimate - $estimate < $rel_err * abs($estimate) or $split == $max_split and $$abort = 1 |