You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed here the QByterArray for used to serialise the trajectory frame is instantiated incorrectly, which causes a segmentation fault when the system size (and nbytes) is large. The function also incorrectly uses the .count() method to determine the number of bytes for QByteArray objects. This is used to count the occurrences of a specific byte. Instead, the .size() method should be used to return the number of bytes.
The text was updated successfully, but these errors were encountered:
As discussed here the
QByterArray
for used to serialise the trajectory frame is instantiated incorrectly, which causes a segmentation fault when the system size (andnbytes
) is large. The function also incorrectly uses the.count()
method to determine the number of bytes forQByteArray
objects. This is used to count the occurrences of a specific byte. Instead, the.size()
method should be used to return the number of bytes.The text was updated successfully, but these errors were encountered: