squiggle/packages/squiggle-lang/__tests__/TS/PointSet_test.ts

37 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-08-29 03:46:52 +00:00
import { testRun, expectErrorToBeBounded, SqValueTag } from "./TestHelpers";
2022-04-20 23:07:25 +00:00
import * as fc from "fast-check";
2022-04-20 04:50:46 +00:00
2022-04-20 23:07:25 +00:00
describe("Mean of mixture is weighted average of means", () => {
test.skip("mx(beta(a,b), lognormal(m,s), [x,y])", () => {
fc.assert(
fc.property(
fc.float({ min: 1e-1 }), // alpha
fc.float({ min: 1 }), // beta
fc.float(), // mu
fc.float({ min: 1e-1 }), // sigma
fc.float({ min: 1e-7 }),
fc.float({ min: 1e-7 }),
(a, b, m, s, x, y) => {
let squiggleString = `mean(mixture(beta(${a},${b}), lognormal(${m},${s}), [${x}, ${y}]))`;
let res = testRun(squiggleString);
let weightDenom = x + y;
let betaWeight = x / weightDenom;
let lognormalWeight = y / weightDenom;
let betaMean = 1 / (1 + b / a);
let lognormalMean = m + s ** 2 / 2;
2022-08-29 03:46:52 +00:00
if (res.tag === SqValueTag.Number) {
2022-04-20 23:07:25 +00:00
expectErrorToBeBounded(
res.value,
betaWeight * betaMean + lognormalWeight * lognormalMean,
1,
2
);
} else {
expect(res.value).toEqual("some error message");
}
}
)
);
});
});