2022-07-19 22:52:28 +00:00
|
|
|
open FunctionRegistry_Core
|
|
|
|
open FunctionRegistry_Helpers
|
|
|
|
|
2022-07-21 15:54:41 +00:00
|
|
|
let nameSpace = "SampleSet"
|
2022-07-19 22:52:28 +00:00
|
|
|
let requiresNamespace = true
|
|
|
|
|
|
|
|
module Internal = {
|
|
|
|
type t = SampleSetDist.t
|
|
|
|
let doLambdaCall = (aLambdaValue, list, environment, reducer) =>
|
|
|
|
switch Reducer_Expression_Lambda.doLambdaCall(aLambdaValue, list, environment, reducer) {
|
|
|
|
| Ok(IEvNumber(f)) => Ok(f)
|
|
|
|
| _ => Error(Operation.SampleMapNeedsNtoNFunction)
|
|
|
|
}
|
|
|
|
|
|
|
|
let toType = (r): result<
|
|
|
|
ReducerInterface_InternalExpressionValue.t,
|
|
|
|
Reducer_ErrorValue.errorValue,
|
|
|
|
> =>
|
|
|
|
switch r {
|
|
|
|
| Ok(r) => Ok(Wrappers.evDistribution(SampleSet(r)))
|
|
|
|
| Error(r) => Error(REDistributionError(SampleSetError(r)))
|
|
|
|
}
|
|
|
|
|
|
|
|
let map1 = (sampleSetDist: t, aLambdaValue, env, reducer) => {
|
|
|
|
let fn = r => doLambdaCall(aLambdaValue, list{IEvNumber(r)}, env, reducer)
|
|
|
|
SampleSetDist.samplesMap(~fn, sampleSetDist)->toType
|
|
|
|
}
|
|
|
|
|
|
|
|
let map2 = (t1: t, t2: t, aLambdaValue, env, reducer) => {
|
|
|
|
let fn = (a, b) => doLambdaCall(aLambdaValue, list{IEvNumber(a), IEvNumber(b)}, env, reducer)
|
|
|
|
SampleSetDist.map2(~fn, ~t1, ~t2)->toType
|
|
|
|
}
|
|
|
|
|
|
|
|
let map3 = (t1: t, t2: t, t3: t, aLambdaValue, env, reducer) => {
|
|
|
|
let fn = (a, b, c) =>
|
|
|
|
doLambdaCall(aLambdaValue, list{IEvNumber(a), IEvNumber(b), IEvNumber(c)}, env, reducer)
|
|
|
|
SampleSetDist.map3(~fn, ~t1, ~t2, ~t3)->toType
|
|
|
|
}
|
|
|
|
|
|
|
|
let parseSampleSetArray = (arr: array<internalExpressionValue>): option<
|
|
|
|
array<SampleSetDist.t>,
|
|
|
|
> => {
|
|
|
|
let parseSampleSet = (value: internalExpressionValue): option<SampleSetDist.t> =>
|
|
|
|
switch value {
|
|
|
|
| IEvDistribution(SampleSet(dist)) => Some(dist)
|
|
|
|
| _ => None
|
|
|
|
}
|
|
|
|
E.A.O.openIfAllSome(E.A.fmap(parseSampleSet, arr))
|
|
|
|
}
|
|
|
|
|
|
|
|
let mapN = (aValueArray: array<internalExpressionValue>, aLambdaValue, env, reducer) => {
|
|
|
|
switch parseSampleSetArray(aValueArray) {
|
|
|
|
| Some(t1) =>
|
|
|
|
let fn = a =>
|
|
|
|
doLambdaCall(
|
|
|
|
aLambdaValue,
|
|
|
|
list{IEvArray(E.A.fmap(x => Wrappers.evNumber(x), a))},
|
|
|
|
env,
|
|
|
|
reducer,
|
|
|
|
)
|
|
|
|
SampleSetDist.mapN(~fn, ~t1)->toType
|
|
|
|
| None => Error(REFunctionNotFound(""))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let library = [
|
|
|
|
Function.make(
|
2022-07-20 03:52:08 +00:00
|
|
|
~name="fromDist",
|
2022-07-19 22:52:28 +00:00
|
|
|
~nameSpace,
|
2022-07-20 03:52:08 +00:00
|
|
|
~requiresNamespace=true,
|
2022-07-21 15:54:41 +00:00
|
|
|
~examples=[`SampleSet.fromDist(normal(5,2))`],
|
2022-07-19 22:52:28 +00:00
|
|
|
~output=ReducerInterface_InternalExpressionValue.EvtDistribution,
|
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
2022-07-20 03:52:08 +00:00
|
|
|
~name="fromDist",
|
2022-07-19 22:52:28 +00:00
|
|
|
~inputs=[FRTypeDist],
|
|
|
|
~run=(_, inputs, env, _) =>
|
|
|
|
switch inputs {
|
|
|
|
| [FRValueDist(dist)] =>
|
|
|
|
GenericDist.toSampleSetDist(dist, env.sampleCount)
|
|
|
|
->E.R2.fmap(Wrappers.sampleSet)
|
|
|
|
->E.R2.fmap(Wrappers.evDistribution)
|
|
|
|
->E.R2.errMap(_ => "")
|
|
|
|
| _ => Error(impossibleError)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
Function.make(
|
2022-07-20 06:06:10 +00:00
|
|
|
~name="fromList",
|
2022-07-20 04:32:11 +00:00
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace=true,
|
2022-07-21 15:54:41 +00:00
|
|
|
~examples=[`SampleSet.fromList([3,5,2,3,5,2,3,5,2,3,3,5,3,2,3,1,1,3])`],
|
2022-07-20 04:32:11 +00:00
|
|
|
~output=ReducerInterface_InternalExpressionValue.EvtDistribution,
|
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
2022-07-20 06:06:10 +00:00
|
|
|
~name="fromList",
|
2022-07-20 04:32:11 +00:00
|
|
|
~inputs=[FRTypeArray(FRTypeNumber)],
|
|
|
|
~run=(_, inputs, _, _) => {
|
|
|
|
let sampleSet =
|
|
|
|
Prepare.ToTypedArray.numbers(inputs) |> E.R2.bind(r =>
|
2022-07-20 06:06:10 +00:00
|
|
|
SampleSetDist.make(r)->E.R2.errMap(_ => "AM I HERE? WHYERE AMI??")
|
2022-07-20 04:32:11 +00:00
|
|
|
)
|
|
|
|
sampleSet->E.R2.fmap(Wrappers.sampleSet)->E.R2.fmap(Wrappers.evDistribution)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
Function.make(
|
2022-07-20 06:06:10 +00:00
|
|
|
~name="toList",
|
2022-07-20 04:32:11 +00:00
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace=false,
|
2022-07-21 15:54:41 +00:00
|
|
|
~examples=[`SampleSet.toList(SampleSet.fromDist(normal(5,2)))`],
|
2022-07-20 04:32:11 +00:00
|
|
|
~output=ReducerInterface_InternalExpressionValue.EvtArray,
|
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
2022-07-20 06:06:10 +00:00
|
|
|
~name="toList",
|
2022-07-20 04:32:11 +00:00
|
|
|
~inputs=[FRTypeDist],
|
|
|
|
~run=(inputs, _, _, _) =>
|
|
|
|
switch inputs {
|
|
|
|
| [IEvDistribution(SampleSet(dist))] =>
|
|
|
|
dist->E.A2.fmap(Wrappers.evNumber)->Wrappers.evArray->Ok
|
|
|
|
| _ => Error(impossibleError)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
Function.make(
|
2022-07-20 06:06:10 +00:00
|
|
|
~name="map",
|
2022-07-19 22:52:28 +00:00
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace,
|
2022-07-21 15:54:41 +00:00
|
|
|
~examples=[`SampleSet.map(SampleSet.fromDist(normal(5,2)), {|x| x + 1})`],
|
2022-07-19 22:52:28 +00:00
|
|
|
~output=ReducerInterface_InternalExpressionValue.EvtDistribution,
|
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
2022-07-20 06:06:10 +00:00
|
|
|
~name="map",
|
2022-07-19 22:52:28 +00:00
|
|
|
~inputs=[FRTypeDist, FRTypeLambda],
|
|
|
|
~run=(inputs, _, env, reducer) =>
|
|
|
|
switch inputs {
|
|
|
|
| [IEvDistribution(SampleSet(dist)), IEvLambda(lambda)] =>
|
|
|
|
Internal.map1(dist, lambda, env, reducer)->E.R2.errMap(_ => "")
|
|
|
|
| _ => Error(impossibleError)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
Function.make(
|
|
|
|
~name="map2",
|
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace,
|
|
|
|
~examples=[
|
2022-07-21 15:54:41 +00:00
|
|
|
`SampleSet.map2(SampleSet.fromDist(normal(5,2)), SampleSet.fromDist(normal(5,2)), {|x, y| x + y})`,
|
2022-07-19 22:52:28 +00:00
|
|
|
],
|
|
|
|
~output=ReducerInterface_InternalExpressionValue.EvtDistribution,
|
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
|
|
|
~name="map2",
|
|
|
|
~inputs=[FRTypeDist, FRTypeDist, FRTypeLambda],
|
|
|
|
~run=(inputs, _, env, reducer) => {
|
|
|
|
switch inputs {
|
|
|
|
| [
|
|
|
|
IEvDistribution(SampleSet(dist1)),
|
|
|
|
IEvDistribution(SampleSet(dist2)),
|
|
|
|
IEvLambda(lambda),
|
|
|
|
] =>
|
|
|
|
Internal.map2(dist1, dist2, lambda, env, reducer)->E.R2.errMap(_ => "")
|
|
|
|
| _ => Error(impossibleError)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
Function.make(
|
|
|
|
~name="map3",
|
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace,
|
|
|
|
~examples=[
|
2022-07-21 15:54:41 +00:00
|
|
|
`SampleSet.map3(SampleSet.fromDist(normal(5,2)), SampleSet.fromDist(normal(5,2)), SampleSet.fromDist(normal(5,2)), {|x, y, z| max([x,y,z])})`,
|
2022-07-19 22:52:28 +00:00
|
|
|
],
|
|
|
|
~output=ReducerInterface_InternalExpressionValue.EvtDistribution,
|
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
|
|
|
~name="map3",
|
|
|
|
~inputs=[FRTypeDist, FRTypeDist, FRTypeDist, FRTypeLambda],
|
|
|
|
~run=(inputs, _, env, reducer) =>
|
|
|
|
switch inputs {
|
|
|
|
| [
|
|
|
|
IEvDistribution(SampleSet(dist1)),
|
|
|
|
IEvDistribution(SampleSet(dist2)),
|
|
|
|
IEvDistribution(SampleSet(dist3)),
|
|
|
|
IEvLambda(lambda),
|
|
|
|
] =>
|
|
|
|
Internal.map3(dist1, dist2, dist3, lambda, env, reducer)->E.R2.errMap(_ => "")
|
|
|
|
| _ => Error(impossibleError)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
Function.make(
|
|
|
|
~name="mapN",
|
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace,
|
|
|
|
~examples=[
|
2022-07-21 15:54:41 +00:00
|
|
|
`SampleSet.mapN([SampleSet.fromDist(normal(5,2)), SampleSet.fromDist(normal(5,2)), SampleSet.fromDist(normal(5,2))], {|x| max(x)})`,
|
2022-07-19 22:52:28 +00:00
|
|
|
],
|
|
|
|
~output=ReducerInterface_InternalExpressionValue.EvtDistribution,
|
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
|
|
|
~name="mapN",
|
|
|
|
~inputs=[FRTypeArray(FRTypeDist), FRTypeLambda],
|
|
|
|
~run=(inputs, _, env, reducer) =>
|
|
|
|
switch inputs {
|
|
|
|
| [IEvArray(dists), IEvLambda(lambda)] =>
|
2022-07-20 06:06:10 +00:00
|
|
|
Internal.mapN(dists, lambda, env, reducer)->E.R2.errMap(e => {
|
|
|
|
"AHHH doesn't work"
|
|
|
|
})
|
2022-07-19 22:52:28 +00:00
|
|
|
| _ => Error(impossibleError)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
]
|