Dynamical system model
|
Defines the Dynamics class. More...
#include <algorithm>
#include <cassert>
#include <concepts>
#include <vector>
#include <random>
#include <span>
#include <numeric>
#include <unordered_map>
#include <cmath>
#include <format>
#include <thread>
#include <exception>
#include "Agent.hpp"
#include "Itinerary.hpp"
#include "Graph.hpp"
#include "SparseMatrix.hpp"
#include "../utility/TypeTraits/is_agent.hpp"
#include "../utility/TypeTraits/is_itinerary.hpp"
#include "../utility/Logger.hpp"
#include "../utility/Typedef.hpp"
Classes | |
struct | dsm::Measurement< T > |
The Measurement struct represents the mean of a quantity and its standard deviation. More... | |
class | dsm::Dynamics< Delay > |
The Dynamics class represents the dynamics of the network. More... | |
class | dsm::FirstOrderDynamics< Delay > |
Typedefs | |
using | dsm::TimePoint = long long unsigned int |
Defines the Dynamics class.
This file contains the definition of the Dynamics class. The Dynamics class represents the dynamics of the network. It is templated by the type of the graph's id and the type of the graph's capacity. The graph's id and capacity must be unsigned integral types.