Skip to content

Commit

Permalink
power interval function bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pmusau17 committed Jun 22, 2021
1 parent 1adb9b6 commit c61bf3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interval.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Interval pow_interval(Interval i, int n) // a^n
if (a >= 0)
{
c = pow(a, n);
d = pow(a, n);
d = pow(b, n);
}
else if (b < 0)
{
Expand Down

0 comments on commit c61bf3c

Please sign in to comment.