FLAMEGPU / FLAMEGPU2

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

Undirected Graphs #1122

Open ptheywood opened 9 months ago

ptheywood commented 9 months ago

Inital graphs / networks implemented are directed graphs.

Undirected graphs are more memory efficient, but not always appropriate, and all undirected graphs can be represented by a directed graph with twice as many edges.

For comms, this might mean iterating two buckets rather than one.

If there is demand / use-cases where the reduced memory footprint is useful, we may wish to implement undirected graphs.