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