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).
OrderbookSim
Connection.hpp
Go to the documentation of this file.
1
9
#pragma once
10
18
struct
Connection
{
19
double
weight
;
20
double
deltaWeight
;
21
};
Connection
Represents a connection between two neurons in a neural network.
Definition:
Connection.hpp:18
Connection::deltaWeight
double deltaWeight
The change in weight during the last update.
Definition:
Connection.hpp:20
Connection::weight
double weight
The weight of the connection.
Definition:
Connection.hpp:19
Generated by
1.9.1