Dynamical system model
Loading...
Searching...
No Matches
RoadDynamics.hpp File Reference

Defines the RoadDynamics 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 <fstream>
#include <iomanip>
#include "Dynamics.hpp"
#include "Agent.hpp"
#include "DijkstraWeights.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

class  dsm::RoadDynamics< delay_t >
 The RoadDynamics class represents the dynamics of the network. More...
 

Namespaces

namespace  dsm
 

Detailed Description

Defines the RoadDynamics class.

This file contains the definition of the RoadDynamics class. The RoadDynamics 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.