FLAMEGPU / FLAMEGPU2

FLAME GPU 2 is a GPU accelerated agent based modelling framework for CUDA C++ and Python
https://flamegpu.com
MIT License
106 stars 21 forks source link

Tests: Workaround for Swig 4.2.1 != None erorrs #1244

Closed ptheywood closed 4 weeks ago

ptheywood commented 4 weeks ago

Works around the swig 4.2.1 x != None errors in the pyflamegpu test suite by using the more idiomatic x is not None.

The underlying issue within Swig is resolved in 4.3.0.

Closes #1233