Minor formatting
This commit is contained in:
parent
248545ee34
commit
0e7f290ff2
|
@ -98,7 +98,7 @@ module Continuous = {
|
|||
let combinePointwise =
|
||||
(
|
||||
~knownIntegralSumsFn,
|
||||
fn: (float => float => float),
|
||||
fn: (float, float) => float,
|
||||
t1: DistTypes.continuousShape,
|
||||
t2: DistTypes.continuousShape,
|
||||
)
|
||||
|
@ -217,9 +217,7 @@ module Continuous = {
|
|||
let integral = (~cache, t) =>
|
||||
if (t |> getShape |> XYShape.T.length > 0) {
|
||||
switch (cache) {
|
||||
| Some(cache) => {
|
||||
cache;
|
||||
}
|
||||
| Some(cache) => cache
|
||||
| None =>
|
||||
t
|
||||
|> getShape
|
||||
|
@ -1236,7 +1234,7 @@ module DistPlus = {
|
|||
// get the total of everything
|
||||
let integralEndY = (~cache as _, t: t) => {
|
||||
Shape.T.Integral.sum(~cache=Some(t.integralCache), toShape(t));
|
||||
}
|
||||
};
|
||||
|
||||
// TODO: Fix this below, obviously. Adjust for limits
|
||||
let integralXtoY = (~cache as _, f, t: t) => {
|
||||
|
|
|
@ -16,11 +16,6 @@ module ExpressionTree = {
|
|||
| `FloatFromDist(distToFloatOperation, node)
|
||||
];
|
||||
|
||||
type dist = [
|
||||
| `SymbolicDist(SymbolicTypes.symbolicDist)
|
||||
| `RenderedDist(DistTypes.shape)
|
||||
];
|
||||
|
||||
type evaluationParams = {
|
||||
sampleCount: int,
|
||||
evaluateNode: (evaluationParams, node) => Belt.Result.t(node, string),
|
||||
|
|
Loading…
Reference in New Issue
Block a user