Closed benjamin-cates closed 11 months ago
exp(neg inf) should actually be zero.
exp(neg inf)
Is this the proper way to create an instance of zero (like a global const or something). I just copied how I saw 1 being created somewhere else in the file.
Oh I now see that some other boundary conditions are written as BigFloat::new(1). Is this a better way to construct it or is it slower?
BigFloat::new(1)
Thanks for pointing to this. Good catch!
Closing as done.
exp(neg inf)
should actually be zero.Is this the proper way to create an instance of zero (like a global const or something). I just copied how I saw 1 being created somewhere else in the file.