Select Git revision
cpp_recipe.rst
cpp_recipe.rst 5.87 KiB
Recipes
The :cpp:class:`arb::recipe` class documentation is below.
C++ best practices
Here we collect rules of thumb to keep in mind when making recipes in C++.
Stay thread safe
The load balancing and model construction are multithreaded, that is multiple threads query the recipe simultaneously. Hence calls to a recipe member should not have side effects, and should use lazy evaluation when possible (see Be lazy).
Recipe
Cells
See :ref:`cppcell`.
Synapses
See :ref:`cppinterconnectivity`.