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).
Classes
Net.hpp File Reference

Defines the Net class for a neural network. More...

#include "Neuron.hpp"
#include <iostream>
#include <cstdlib>
#include <cassert>
#include <cmath>
#include <fstream>
#include <sstream>
#include <filesystem>

Go to the source code of this file.

Classes

class  Net
 Represents a neural network composed of layers of neurons. More...
 

Detailed Description

Defines the Net class for a neural network.

This file contains the Net class, which represents a neural network with functionalities for forward propagation, backpropagation, and managing network topology.