Implement normalised incomplete-gamma
The incomplete-gamma
function is often used normalised. For this, I currently use:
(if normalised
(/ igamma (gamma a))
igamma)))
In issue #5 (closed), Raymond suggests that this risks overflow, and a version specific to a normalised gamma should be possible that eliminates (or reduces) this risk.