Orderbook Simulation
OrderbookSim is a C++ application simulating a financial market order book. It efficiently manages and matches buy and sell orders while calculating the Volume-Weighted Average Price (VWAP).
Connection.hpp
Go to the documentation of this file.
1 
9 #pragma once
10 
18 struct Connection {
19  double weight;
20  double deltaWeight;
21 };
Represents a connection between two neurons in a neural network.
Definition: Connection.hpp:18
double deltaWeight
The change in weight during the last update.
Definition: Connection.hpp:20
double weight
The weight of the connection.
Definition: Connection.hpp:19