Files
pricing/tests/stubs/FlatYieldCurve.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

16 lines
385 B
C++

//
// Created by David Doebel on 07.03.2026.
//
#ifndef QUANTENGINE_FLATYIELDCURVE_HPP
#define QUANTENGINE_FLATYIELDCURVE_HPP
#include "YieldCurve.hpp"
#include <cmath>
class FlatYieldCurve : public YieldCurve{
double discount(double t) override {return std::exp(-rate_ * t); };
double zeroRate(double t) override {return rate_; }
private:
double rate_ = 0.01;
};
#endif