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).
|
Represents a connection between two neurons in a neural network. More...
#include <Connection.hpp>
Public Attributes | |
double | weight |
The weight of the connection. More... | |
double | deltaWeight |
The change in weight during the last update. More... | |
Represents a connection between two neurons in a neural network.
Each Connection stores the weight of the link between neurons and the delta weight, which indicates how much the weight has changed during training.
double Connection::deltaWeight |
The change in weight during the last update.
double Connection::weight |
The weight of the connection.