feat(mean_field): added initial implementation

note this implementation lacks many tests
This commit is contained in:
2026-07-15 09:44:43 -04:00
commit 9bc4f2758a
49 changed files with 171811 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
#pragma once
#include <mfem.hpp>
#include <stroid/stroid.h>

View File

@@ -0,0 +1,11 @@
#pragma once
#include <type_traits>
#if defined(_LIBCPP_VERSION)
namespace std {
template <class... Args>
struct __promote {
using type = double;
};
}
#endif