Add Analytics and requirements

This commit is contained in:
David Doebel
2026-03-04 00:44:52 +01:00
parent 15a20fc965
commit 04725b27d9
5 changed files with 545 additions and 0 deletions

6
src/Analytics.cpp Normal file
View File

@@ -0,0 +1,6 @@
//
// Created by David Doebel on 04.03.2026.
//
#include "Analytics.hpp"

16
src/Analytics.hpp Normal file
View File

@@ -0,0 +1,16 @@
//
// Created by David Doebel on 04.03.2026.
//
#ifndef QUANTENGINE_ANALYTICS_HPP
#define QUANTENGINE_ANALYTICS_HPP
class Analytics {
public:
Analytics() = delete;
};
#endif //QUANTENGINE_ANALYTICS_HPP

View File

@@ -3,6 +3,8 @@ add_library(qengine
monte_carlo.cpp
payoff.cpp
main.cpp
Analytics.cpp
Analytics.hpp
)
target_include_directories(qengine PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})