fmap2 -> E.R2.fmap
This commit is contained in:
parent
c158b4183b
commit
2fce3d67e9
|
@ -41,7 +41,7 @@ let operationToFloat = (t, toPointSet: toPointSetFn, fnName) => {
|
||||||
|
|
||||||
switch symbolicSolution {
|
switch symbolicSolution {
|
||||||
| Some(r) => Ok(r)
|
| Some(r) => Ok(r)
|
||||||
| None => toPointSet(t)->E.R.fmap2(PointSetDist.operate(fnName))
|
| None => toPointSet(t)->E.R2.fmap(PointSetDist.operate(fnName))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ module Truncate = {
|
||||||
switch trySymbolicSimplification(leftCutoff, rightCutoff, t) {
|
switch trySymbolicSimplification(leftCutoff, rightCutoff, t) {
|
||||||
| Some(r) => Ok(r)
|
| Some(r) => Ok(r)
|
||||||
| None =>
|
| None =>
|
||||||
toPointSet(t)->E.R.fmap2(t =>
|
toPointSet(t)->E.R2.fmap(t =>
|
||||||
#PointSet(PointSetDist.T.truncate(leftCutoff, rightCutoff, t))
|
#PointSet(PointSetDist.T.truncate(leftCutoff, rightCutoff, t))
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -134,7 +134,7 @@ module AlgebraicCombination = {
|
||||||
t1: t,
|
t1: t,
|
||||||
t2: t,
|
t2: t,
|
||||||
) =>
|
) =>
|
||||||
E.R.merge(toPointSet(t1), toPointSet(t2))->E.R.fmap2(((a, b)) =>
|
E.R.merge(toPointSet(t1), toPointSet(t2))->E.R2.fmap(((a, b)) =>
|
||||||
PointSetDist.combineAlgebraically(operation, a, b)
|
PointSetDist.combineAlgebraically(operation, a, b)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -145,8 +145,8 @@ module AlgebraicCombination = {
|
||||||
t2: t,
|
t2: t,
|
||||||
) => {
|
) => {
|
||||||
let operation = Operation.Algebraic.toFn(operation)
|
let operation = Operation.Algebraic.toFn(operation)
|
||||||
E.R.merge(toSampleSet(t1), toSampleSet(t2)) -> E.R.fmap2(((a, b)) => {
|
E.R.merge(toSampleSet(t1), toSampleSet(t2))->E.R2.fmap(((a, b)) => {
|
||||||
Belt.Array.zip(a, b) -> E.A.fmap2(((a, b)) => operation(a, b))
|
Belt.Array.zip(a, b)->E.A2.fmap(((a, b)) => operation(a, b))
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -155,7 +155,7 @@ module AlgebraicCombination = {
|
||||||
switch x {
|
switch x {
|
||||||
| #Symbolic(#Float(_)) => 1
|
| #Symbolic(#Float(_)) => 1
|
||||||
| #Symbolic(_) => 1000
|
| #Symbolic(_) => 1000
|
||||||
| #PointSet(Discrete(m)) => m.xyShape -> XYShape.T.length
|
| #PointSet(Discrete(m)) => m.xyShape->XYShape.T.length
|
||||||
| #PointSet(Mixed(_)) => 1000
|
| #PointSet(Mixed(_)) => 1000
|
||||||
| #PointSet(Continuous(_)) => 1000
|
| #PointSet(Continuous(_)) => 1000
|
||||||
| _ => 1000
|
| _ => 1000
|
||||||
|
@ -179,9 +179,9 @@ module AlgebraicCombination = {
|
||||||
| None =>
|
| None =>
|
||||||
switch chooseConvolutionOrMonteCarlo(t1, t2) {
|
switch chooseConvolutionOrMonteCarlo(t1, t2) {
|
||||||
| #CalculateWithMonteCarlo =>
|
| #CalculateWithMonteCarlo =>
|
||||||
runMonteCarlo(toSampleSet, algebraicOp, t1, t2)->E.R.fmap2(r => #SampleSet(r))
|
runMonteCarlo(toSampleSet, algebraicOp, t1, t2)->E.R2.fmap(r => #SampleSet(r))
|
||||||
| #CalculateWithConvolution =>
|
| #CalculateWithConvolution =>
|
||||||
runConvolution(toPointSet, algebraicOp, t1, t2)->E.R.fmap2(r => #PointSet(r))
|
runConvolution(toPointSet, algebraicOp, t1, t2)->E.R2.fmap(r => #PointSet(r))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -195,10 +195,10 @@ let pointwiseCombination = (t1: t, toPointSet: toPointSetFn, operation, t2: t):
|
||||||
error,
|
error,
|
||||||
> => {
|
> => {
|
||||||
E.R.merge(toPointSet(t1), toPointSet(t2))
|
E.R.merge(toPointSet(t1), toPointSet(t2))
|
||||||
->E.R.fmap2(((t1, t2)) =>
|
->E.R2.fmap(((t1, t2)) =>
|
||||||
PointSetDist.combinePointwise(GenericDist_Types.Operation.arithmeticToFn(operation), t1, t2)
|
PointSetDist.combinePointwise(GenericDist_Types.Operation.arithmeticToFn(operation), t1, t2)
|
||||||
)
|
)
|
||||||
->E.R.fmap2(r => #PointSet(r))
|
->E.R2.fmap(r => #PointSet(r))
|
||||||
}
|
}
|
||||||
|
|
||||||
let pointwiseCombinationFloat = (
|
let pointwiseCombinationFloat = (
|
||||||
|
@ -210,7 +210,7 @@ let pointwiseCombinationFloat = (
|
||||||
switch operation {
|
switch operation {
|
||||||
| #Add | #Subtract => Error(GenericDist_Types.DistributionVerticalShiftIsInvalid)
|
| #Add | #Subtract => Error(GenericDist_Types.DistributionVerticalShiftIsInvalid)
|
||||||
| (#Multiply | #Divide | #Exponentiate | #Log) as operation =>
|
| (#Multiply | #Divide | #Exponentiate | #Log) as operation =>
|
||||||
toPointSet(t)->E.R.fmap2(t => {
|
toPointSet(t)->E.R2.fmap(t => {
|
||||||
//TODO: Move to PointSet codebase
|
//TODO: Move to PointSet codebase
|
||||||
let fn = (secondary, main) => Operation.Scale.toFn(operation, main, secondary)
|
let fn = (secondary, main) => Operation.Scale.toFn(operation, main, secondary)
|
||||||
let integralSumCacheFn = Operation.Scale.toIntegralSumCacheFn(operation)
|
let integralSumCacheFn = Operation.Scale.toIntegralSumCacheFn(operation)
|
||||||
|
@ -222,10 +222,10 @@ let pointwiseCombinationFloat = (
|
||||||
t,
|
t,
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
}->E.R.fmap2(r => #PointSet(r))
|
}->E.R2.fmap(r => #PointSet(r))
|
||||||
}
|
}
|
||||||
|
|
||||||
//Note: The result should always cumulatively sum to 1.
|
//Note: The result should always cumulatively sum to 1. This would be good to test.
|
||||||
let mixture = (
|
let mixture = (
|
||||||
values: array<(t, float)>,
|
values: array<(t, float)>,
|
||||||
scaleMultiply: scaleMultiplyFn,
|
scaleMultiply: scaleMultiplyFn,
|
||||||
|
@ -234,10 +234,10 @@ let mixture = (
|
||||||
if E.A.length(values) == 0 {
|
if E.A.length(values) == 0 {
|
||||||
Error(GenericDist_Types.Other("mixture must have at least 1 element"))
|
Error(GenericDist_Types.Other("mixture must have at least 1 element"))
|
||||||
} else {
|
} else {
|
||||||
let totalWeight = values->E.A.fmap2(E.Tuple2.second)->E.A.Floats.sum
|
let totalWeight = values->E.A2.fmap(E.Tuple2.second)->E.A.Floats.sum
|
||||||
let properlyWeightedValues =
|
let properlyWeightedValues =
|
||||||
values
|
values
|
||||||
->E.A.fmap2(((dist, weight)) => scaleMultiply(dist, weight /. totalWeight))
|
->E.A2.fmap(((dist, weight)) => scaleMultiply(dist, weight /. totalWeight))
|
||||||
->E.A.R.firstErrorOrOpen
|
->E.A.R.firstErrorOrOpen
|
||||||
properlyWeightedValues->E.R.bind(values => {
|
properlyWeightedValues->E.R.bind(values => {
|
||||||
values
|
values
|
||||||
|
|
|
@ -93,7 +93,7 @@ let rec run = (extra, fnName: operation): outputType => {
|
||||||
let fromDistFn = (subFn: GenericDist_Types.Operation.fromDist, dist: genericDist) =>
|
let fromDistFn = (subFn: GenericDist_Types.Operation.fromDist, dist: genericDist) =>
|
||||||
switch subFn {
|
switch subFn {
|
||||||
| #toFloat(fnName) =>
|
| #toFloat(fnName) =>
|
||||||
GenericDist.operationToFloat(dist, toPointSet, fnName)->E.R.fmap2(r => #Float(r))->fromResult
|
GenericDist.operationToFloat(dist, toPointSet, fnName)->E.R2.fmap(r => #Float(r))->fromResult
|
||||||
| #toString => dist->GenericDist.toString->(r => #String(r))
|
| #toString => dist->GenericDist.toString->(r => #String(r))
|
||||||
| #toDist(#consoleLog) => {
|
| #toDist(#consoleLog) => {
|
||||||
Js.log2("Console log requested: ", dist)
|
Js.log2("Console log requested: ", dist)
|
||||||
|
@ -101,26 +101,26 @@ let rec run = (extra, fnName: operation): outputType => {
|
||||||
}
|
}
|
||||||
| #toDist(#normalize) => dist->GenericDist.normalize->(r => #Dist(r))
|
| #toDist(#normalize) => dist->GenericDist.normalize->(r => #Dist(r))
|
||||||
| #toDist(#truncate(left, right)) =>
|
| #toDist(#truncate(left, right)) =>
|
||||||
dist->GenericDist.truncate(toPointSet, left, right)->E.R.fmap2(r => #Dist(r))->fromResult
|
dist->GenericDist.truncate(toPointSet, left, right)->E.R2.fmap(r => #Dist(r))->fromResult
|
||||||
| #toDist(#toPointSet) =>
|
| #toDist(#toPointSet) =>
|
||||||
dist->GenericDist.toPointSet(xyPointLength)->E.R.fmap2(r => #Dist(#PointSet(r)))->fromResult
|
dist->GenericDist.toPointSet(xyPointLength)->E.R2.fmap(r => #Dist(#PointSet(r)))->fromResult
|
||||||
| #toDist(#toSampleSet(n)) =>
|
| #toDist(#toSampleSet(n)) =>
|
||||||
dist->GenericDist.sampleN(n)->E.R.fmap2(r => #Dist(#SampleSet(r)))->fromResult
|
dist->GenericDist.sampleN(n)->E.R2.fmap(r => #Dist(#SampleSet(r)))->fromResult
|
||||||
| #toDistCombination(#Algebraic, _, #Float(_)) => #Error(NotYetImplemented)
|
| #toDistCombination(#Algebraic, _, #Float(_)) => #Error(NotYetImplemented)
|
||||||
| #toDistCombination(#Algebraic, operation, #Dist(dist2)) =>
|
| #toDistCombination(#Algebraic, operation, #Dist(dist2)) =>
|
||||||
dist
|
dist
|
||||||
->GenericDist.algebraicCombination(toPointSet, toSampleSet, operation, dist2)
|
->GenericDist.algebraicCombination(toPointSet, toSampleSet, operation, dist2)
|
||||||
->E.R.fmap2(r => #Dist(r))
|
->E.R2.fmap(r => #Dist(r))
|
||||||
->fromResult
|
->fromResult
|
||||||
| #toDistCombination(#Pointwise, operation, #Dist(dist2)) =>
|
| #toDistCombination(#Pointwise, operation, #Dist(dist2)) =>
|
||||||
dist
|
dist
|
||||||
->GenericDist.pointwiseCombination(toPointSet, operation, dist2)
|
->GenericDist.pointwiseCombination(toPointSet, operation, dist2)
|
||||||
->E.R.fmap2(r => #Dist(r))
|
->E.R2.fmap(r => #Dist(r))
|
||||||
->fromResult
|
->fromResult
|
||||||
| #toDistCombination(#Pointwise, operation, #Float(f)) =>
|
| #toDistCombination(#Pointwise, operation, #Float(f)) =>
|
||||||
dist
|
dist
|
||||||
->GenericDist.pointwiseCombinationFloat(toPointSet, operation, f)
|
->GenericDist.pointwiseCombinationFloat(toPointSet, operation, f)
|
||||||
->E.R.fmap2(r => #Dist(r))
|
->E.R2.fmap(r => #Dist(r))
|
||||||
->fromResult
|
->fromResult
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -128,7 +128,7 @@ let rec run = (extra, fnName: operation): outputType => {
|
||||||
| #fromDist(subFn, dist) => fromDistFn(subFn, dist)
|
| #fromDist(subFn, dist) => fromDistFn(subFn, dist)
|
||||||
| #fromFloat(subFn, float) => reCall(~fnName=#fromDist(subFn, GenericDist.fromFloat(float)), ())
|
| #fromFloat(subFn, float) => reCall(~fnName=#fromDist(subFn, GenericDist.fromFloat(float)), ())
|
||||||
| #mixture(dists) =>
|
| #mixture(dists) =>
|
||||||
dists->GenericDist.mixture(scaleMultiply, pointwiseAdd)->E.R.fmap2(r => #Dist(r))->fromResult
|
dists->GenericDist.mixture(scaleMultiply, pointwiseAdd)->E.R2.fmap(r => #Dist(r))->fromResult
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -147,5 +147,5 @@ let fmap = (
|
||||||
| (#fromDist(_), _) => Error(Other("Expected dist, got something else"))
|
| (#fromDist(_), _) => Error(Other("Expected dist, got something else"))
|
||||||
| (#fromFloat(_), _) => Error(Other("Expected float, got something else"))
|
| (#fromFloat(_), _) => Error(Other("Expected float, got something else"))
|
||||||
}
|
}
|
||||||
newFnCall->E.R.fmap2(r => run(extra, r))->fromResult
|
newFnCall->E.R2.fmap(r => run(extra, r))->fromResult
|
||||||
}
|
}
|
||||||
|
|
|
@ -148,7 +148,6 @@ module R = {
|
||||||
let result = Rationale.Result.result
|
let result = Rationale.Result.result
|
||||||
let id = e => e |> result(U.id, U.id)
|
let id = e => e |> result(U.id, U.id)
|
||||||
let fmap = Rationale.Result.fmap
|
let fmap = Rationale.Result.fmap
|
||||||
let fmap2 = (a,b) => Rationale.Result.fmap(b,a)
|
|
||||||
let bind = Rationale.Result.bind
|
let bind = Rationale.Result.bind
|
||||||
let toExn = Belt.Result.getExn
|
let toExn = Belt.Result.getExn
|
||||||
let default = (default, res: Belt.Result.t<'a, 'b>) =>
|
let default = (default, res: Belt.Result.t<'a, 'b>) =>
|
||||||
|
@ -172,6 +171,10 @@ module R = {
|
||||||
errorCondition(r) ? Error(errorMessage) : Ok(r)
|
errorCondition(r) ? Error(errorMessage) : Ok(r)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module R2 = {
|
||||||
|
let fmap = (a,b) => R.fmap(b,a)
|
||||||
|
}
|
||||||
|
|
||||||
let safe_fn_of_string = (fn, s: string): option<'a> =>
|
let safe_fn_of_string = (fn, s: string): option<'a> =>
|
||||||
try Some(fn(s)) catch {
|
try Some(fn(s)) catch {
|
||||||
| _ => None
|
| _ => None
|
||||||
|
@ -245,7 +248,6 @@ module L = {
|
||||||
/* A for Array */
|
/* A for Array */
|
||||||
module A = {
|
module A = {
|
||||||
let fmap = Array.map
|
let fmap = Array.map
|
||||||
let fmap2 = (a,b) => Array.map(b,a)
|
|
||||||
let fmapi = Array.mapi
|
let fmapi = Array.mapi
|
||||||
let to_list = Array.to_list
|
let to_list = Array.to_list
|
||||||
let of_list = Array.of_list
|
let of_list = Array.of_list
|
||||||
|
@ -448,6 +450,10 @@ module A = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module A2 = {
|
||||||
|
let fmap = (a,b) => A.fmap(b,a)
|
||||||
|
}
|
||||||
|
|
||||||
module JsArray = {
|
module JsArray = {
|
||||||
let concatSomes = (optionals: Js.Array.t<option<'a>>): Js.Array.t<'a> =>
|
let concatSomes = (optionals: Js.Array.t<option<'a>>): Js.Array.t<'a> =>
|
||||||
optionals
|
optionals
|
||||||
|
|
Loading…
Reference in New Issue
Block a user