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).
Public Attributes | List of all members
Connection Struct Reference

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...
 

Detailed Description

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.

Member Data Documentation

◆ deltaWeight

double Connection::deltaWeight

The change in weight during the last update.

◆ weight

double Connection::weight

The weight of the connection.


The documentation for this struct was generated from the following file: