diff options
| author | ruki <[email protected]> | 2024-03-14 00:53:32 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-03-14 00:53:32 +0800 |
| commit | ed96baab01f8e2d419788ecf485502f6e5509b7e (patch) | |
| tree | 16fd39ba4414551feddf0e39363409d776d04ad0 /tests/projects/c++/modules/partitions_implunit/src/math.cpp | |
| parent | 61045518a48698768f184e7509796f7c911f118e (diff) | |
improve test
Diffstat (limited to 'tests/projects/c++/modules/partitions_implunit/src/math.cpp')
| -rw-r--r-- | tests/projects/c++/modules/partitions_implunit/src/math.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/projects/c++/modules/partitions_implunit/src/math.cpp b/tests/projects/c++/modules/partitions_implunit/src/math.cpp index 3a10c8203..3651adb2d 100644 --- a/tests/projects/c++/modules/partitions_implunit/src/math.cpp +++ b/tests/projects/c++/modules/partitions_implunit/src/math.cpp @@ -2,14 +2,12 @@ module math; import :details;
-double Math::superLog(double z, double b)
-{
+double Math::superLog(double z, double b) {
// Implementation omitted...
return someHelperFunction(z);
}
-double Math::lerchZeta(double lambda, double alpha, double s)
-{
+double Math::lerchZeta(double lambda, double alpha, double s) {
// Implementation omitted...
return someHelperFunction(s);
}
|
