Skip to content

Commit

Permalink
Add appropriate directions for limits for definite integration.
Browse files Browse the repository at this point in the history
  • Loading branch information
samb authored and samb committed Feb 22, 2024
1 parent dd19a12 commit 61e9c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rubi/Rubi.m
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@
Int::definite = "Rubi does not check whether the domain of integration is continuous.";
Int[u_, {x_Symbol, a_, b_}] := With[{result = Int[u, x]},
Message[Int::definite];
Limit[result, x -> b] - Limit[result, x -> a]];
Limit[result, x -> b, Direction -> 1] - Limit[result, x -> a, Direction -> -1]];

Int[{u__}, x_Symbol] := Map[Function[Int[#, x]], {u}];

Expand Down

0 comments on commit 61e9c18

Please sign in to comment.