Skip to content
Snippets Groups Projects
Commit 8975c764 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

[BUGFIX] disallow bool as particle property type

since std::vector<bool> behaves differently to std::vector using bool
can cause troubles
parent 0d12b053
Branches
Tags
No related merge requests found
Pipeline #23699 passed with stages
in 8 hours, 28 minutes, and 10 seconds
......@@ -26,6 +26,10 @@ def create_particle_property(name, type, access="grs", defValue="", syncMode="AL
'ALWAYS', this property has to be synced in every iteration
"""
if (type == 'bool'):
raise RuntimeError(f"Due to flaws in the implementation of std::vector<bool>, bool is not supported as a "
f"property type! Please use char instead.")
# sort access specifier and remove duplicates
foo = "".join(sorted(access))
access = ''.join([foo[i] for i in range(len(foo) - 1) if foo[i + 1] != foo[i]] + [foo[-1]])
......
  • Owner

    Further information is available on stackoverflow.

0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment