summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/partitions_implunit/src/math.cpp
blob: 3651adb2db255c14e3e215804fb242a274796a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
}