bmath file

This commit is contained in:
Barrett Ruth 2025-08-30 19:53:50 -05:00
parent 771751d9c0
commit 8f191a7e3f
3 changed files with 9 additions and 2 deletions

View file

@ -2,5 +2,6 @@
#define BMATH_BMATH_HH
#include "bmath/mint.hh"
#include "bmath/sieve.hh"
#endif

View file

@ -1,14 +1,14 @@
#ifndef BMATH_MINT_HH
#define BMATH_MINT_HH
namespace bmath {
#include <format>
#include <iterator>
#include <ostream>
#include <stdexcept>
#include <string>
namespace bmath {
inline constexpr uint64_t DEFAULT_MOD = 1'000'000'007;
template <std::integral T, T M = static_cast<T>(DEFAULT_MOD)>

6
include/bmath/sieve.hh Normal file
View file

@ -0,0 +1,6 @@
#ifndef BMATH_SIEVE_HH
#define BMATH_SIEVE_HH
namespace bmath {};
#endif