You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fo...@jsoftware.com
During some calcs I was converting large values of arbitrary precision integers to a floating point by mulitplying by 1.0, which at some point it overflows the range of double so the result was _. Tried using extended precision floats to see if that still gave a _, but it resulted in a "floating point exception” which crashed jconsole.
Example:
1.0*!10x^6 => _
1.0fq*!10x^6 => crash
Regards
Pete
P Padil
unread,
Apr 8, 2026, 4:15:53 PMApr 8
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fo...@jsoftware.com
You appear to be trying to convert numbers which cannot be represented in floating point. According to Gemini, the range for the IEEE 64-bit floating point specification is about 1.7977E308. The value of !10x^6 is about 1e5565709 so is out of range.
Devon McCormick
To unsubscribe from this group and stop receiving emails from it, send an email to forum+un...@jsoftware.com.
P Padil
unread,
Apr 8, 2026, 4:27:02 PMApr 8
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fo...@jsoftware.com
I know is out of range for 64bit but even then the answer is _ (signifying overflow - not crashing).
P Padil
unread,
Apr 8, 2026, 4:35:05 PMApr 8
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fo...@jsoftware.com
Just to be clear, the example is just for demonstrating the issue, not what I was trying to do which is using the log10 of some values...
Henry Rich
unread,
Apr 8, 2026, 6:11:52 PMApr 8
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to forum
I'll get to this, but it won't be till May.
Henry Rich
Henry Rich
unread,
Apr 8, 2026, 6:16:29 PMApr 8
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to forum
If you add this to the GitHub issues list you can be sure I won't forget about it.
Henry Rich
P Padil
unread,
Apr 8, 2026, 6:21:32 PMApr 8
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message