[libcxx-commits] [libcxx] [libc++][math] Mathematical Special Functions: Hermite Polynomial (PR #89982)

via libcxx-commits libcxx-commits at lists.llvm.org
Fri Apr 26 14:32:14 PDT 2024


================
@@ -0,0 +1,303 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// <experimental/cmath>
+
+#include <cassert>
+#include <experimental/math>
+#include <iostream>
+#include <limits>
+#include <vector>
+#include <array>
+
+#include <assert_macros.h>
+
+// UNSUPPORTED: c++03, c++11, c++14
----------------
PaulXiCao wrote:

Fixed in e2e2da87bf5b5ade98eba92946eb23804fc7fa5a.

https://github.com/llvm/llvm-project/pull/89982


More information about the libcxx-commits mailing list