Skip to content

Commit b8aa998

Browse files
committed
fixed an issue where using quad precision would cause errors in the python script
since the number to string didn't have enough digits to print the string
1 parent da68b01 commit b8aa998

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyplot_module.F90

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ module pyplot_module
4949
character(len=*), parameter :: int_fmt = '(I10)' !! integer format string
5050
integer, parameter :: max_int_len = 10 !! max string length for integers
5151
character(len=*), parameter :: real_fmt_default = '(E30.16)' !! default real number format string
52-
integer, parameter :: max_real_len = 30 !! max string length for reals
52+
integer, parameter :: max_real_len = 60 !! max string length for reals
5353

5454
type, public :: pyplot
5555

0 commit comments

Comments
 (0)