Files
pricing/tests/stubs/FlatVolatilitySurface.hpp
David Doebel 08298439ea
Some checks failed
C++ CI / build (push) Has been cancelled
Create option pricing engine structure, test architecture.
2026-03-08 10:15:23 +01:00

11 lines
292 B
C++

//
// Created by David Doebel on 07.03.2026.
//
#ifndef QUANTENGINE_FLATVOLATILITYSURFACE_HPP
#define QUANTENGINE_FLATVOLATILITYSURFACE_HPP
#include "VolatilitySurface.hpp"
class FlatVolatilitySurface : public VolatilitySurface {
double sigma(double K, double T) {return 0.2;}
};
#endif