Leandro Martínez

Results 112 comments of Leandro Martínez

IMHO it shouldn't be suggested by Julia like that. I think what would be good is a rewrite of the Getting Started section of the manual including a description of...

I was looking at the `Agents` examples, and found that probably the `Flocking` example of birds is the closer to the typical application of CellListMap. Yet, as I understand, the...

A typical simulation written on top of CellListMap is here, if anyone wants to take a look: https://github.com/m3g/2021_FortranCon/blob/main/celllistmap_vs_namd/simulate.jl (these are molecular simulations - it would be nice to see how...

@ehsanirani If you can share your running code (even if privately), I would like to see how do you integrate it with Agents. Mostly what I don't see is how...

That is a really nice application. I think as a an example it is better to make it simpler. But that is a perfect example. I will try to simplify...

What is the size (number of bacteria and obstacles) of the actual simulations? CellListMap is expected to provide reasonable speedups for >10k interactions, I guess. That is probably a relevant...

I am working in a minimalist version of the integration here: https://github.com/lmiq/agents_with_celllistmap/ The simulations ARE working (the video is produced), but: 1) Seems that my `agent_step!` function is somewhat redundant...

The example above is now running correctly, and produces this video: https://github.com/lmiq/agents_with_celllistmap/blob/main/test.mp4 The best way to take advantage of Agents.jl is to be discussed. Also it would be interesting to...

> Yes, this is a design decision I am not happy with and may likely change in the future to `SVector`. Couldn't the type of array be made generic? >...

> Hm, I am not sure what you mean by that. The position is a field of a struct, the agent struct. The agent type could be parametrized for the...