diff options
| author | ruki <[email protected]> | 2024-03-14 00:51:32 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-03-14 00:51:32 +0800 |
| commit | 218abfd90286dd906f28c368802fd755808f1ab9 (patch) | |
| tree | 469d74e7fba4e6c32366c1dc0d5037a4e9bed6a8 /tests/projects/c++/modules/partitions_implunit/src/math.cpp | |
| parent | 53cc8033c4b7970afb13e89cb6b79272e71fbfda (diff) | |
improve tests
Diffstat (limited to 'tests/projects/c++/modules/partitions_implunit/src/math.cpp')
| -rw-r--r-- | tests/projects/c++/modules/partitions_implunit/src/math.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/partitions_implunit/src/math.cpp b/tests/projects/c++/modules/partitions_implunit/src/math.cpp new file mode 100644 index 000000000..3a10c8203 --- /dev/null +++ b/tests/projects/c++/modules/partitions_implunit/src/math.cpp @@ -0,0 +1,15 @@ +module math;
+
+import :details;
+
+double Math::superLog(double z, double b)
+{
+ // Implementation omitted...
+ return someHelperFunction(z);
+}
+
+double Math::lerchZeta(double lambda, double alpha, double s)
+{
+ // Implementation omitted...
+ return someHelperFunction(s);
+}
|
