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
The type usage for storing particle count, particle indices is inconsistent across the library, most of the particle count queries are returning integers, while the particle index is defined as uint64_t. Internally it's stored using ints.
Simply get rid of the custom definitions and rely on size_t, which is always the biggest size type on any platform. No need for any custom types.