|
Dynamic Neural Field Composer 0.0.0
A C++20 library and interactive application for building and simulating Dynamic Neural Field (DNF) architectures.
|
#include <vector>#include <memory>#include <string>#include <filesystem>#include <chrono>#include "elements/element.h"#include "exceptions/exception.h"#include "tools/utils.h"#include "simulation/simulation_recorder.h"Go to the source code of this file.
Classes | |
| class | dnf_composer::Simulation |
| Manages the element registry and drives the simulation loop. More... | |
Namespaces | |
| namespace | dnf_composer |
Functions | |
| std::shared_ptr< Simulation > | dnf_composer::createSimulation (const std::string &identifier="", double deltaT=1, double tZero=0, double t=0) |
| Factory helper — create a Simulation with the given parameters. | |