Files
MeanField/libmeanfield/include/xad_promote_polyfill.h
Emily Boudreaux 9bc4f2758a feat(mean_field): added initial implementation
note this implementation lacks many tests
2026-07-15 09:44:43 -04:00

11 lines
178 B
C++

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