Cleanup to samplesMap() code
This commit is contained in:
parent
606f24ff24
commit
eafdfdc7b7
|
@ -37,6 +37,7 @@ module Error = {
|
|||
| LogarithmOfDistributionError(s) => `Logarithm of input error: ${s}`
|
||||
| SampleSetError(TooFewSamples) => "Too Few Samples"
|
||||
| SampleSetError(NonNumericInput(err)) => `Found a non-number in input: ${err}`
|
||||
| SampleSetError(OperationError(err)) => Operation.Error.toString(err)
|
||||
| OperationError(err) => Operation.Error.toString(err)
|
||||
| PointSetConversionError(err) => SampleSetDist.pointsetConversionErrorToString(err)
|
||||
| SparklineError(err) => PointSetTypes.sparklineErrorToString(err)
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
@genType
|
||||
module Error = {
|
||||
@genType
|
||||
type sampleSetError = TooFewSamples | NonNumericInput(string)
|
||||
type sampleSetError =
|
||||
TooFewSamples | NonNumericInput(string) | OperationError(Operation.operationError)
|
||||
|
||||
let sampleSetErrorToString = (err: sampleSetError): string =>
|
||||
switch err {
|
||||
| TooFewSamples => "Too few samples when constructing sample set"
|
||||
| NonNumericInput(err) => `Found a non-number in input: ${err}`
|
||||
| OperationError(err) => Operation.Error.toString(err)
|
||||
}
|
||||
|
||||
@genType
|
||||
|
@ -16,6 +18,8 @@ module Error = {
|
|||
switch err {
|
||||
| TooFewSamplesForConversionToPointSet => "Too Few Samples to convert to point set"
|
||||
}
|
||||
|
||||
let fromOperationError = e => OperationError(e)
|
||||
}
|
||||
|
||||
include Error
|
||||
|
@ -85,13 +89,10 @@ let sampleN = (t: t, n) => {
|
|||
|
||||
let samplesMap = (~fn: float => result<float, Operation.Error.t>, t: t): result<
|
||||
t,
|
||||
Operation.Error.t,
|
||||
sampleSetError,
|
||||
> => {
|
||||
let samples = T.get(t)->E.A2.fmap(fn)
|
||||
|
||||
E.A.R.firstErrorOrOpen(samples)->E.R2.fmap(x =>
|
||||
E.R.toExn("Input of samples should be larger than 5", make(x))
|
||||
)
|
||||
E.A.R.firstErrorOrOpen(samples)->E.R2.errMap(Error.fromOperationError) |> E.R2.bind(make)
|
||||
}
|
||||
|
||||
//TODO: Figure out what to do if distributions are different lengths. ``zip`` is kind of inelegant for this.
|
||||
|
@ -107,7 +108,7 @@ let map2 = (~fn: (float, float) => result<float, Operation.Error.t>, ~t1: t, ~t2
|
|||
// I could prove this to the type system (say, creating a {first: float, second: float, ..., fifth: float, rest: array<float>}
|
||||
// But doing so would take too much time, so I'll leave it as an assertion
|
||||
E.A.R.firstErrorOrOpen(samples)->E.R2.fmap(x =>
|
||||
E.R.toExn("Input of samples should be larger than 5", make(x))
|
||||
E.R.toExnFnString(Error.sampleSetErrorToString, make(x))
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
@ -107,7 +107,7 @@ let callInternal = (call: functionCall, environment, reducer: ExpressionT.reduce
|
|||
}
|
||||
switch SampleSetDist.samplesMap(~fn, sampleSetDist) {
|
||||
| Ok(r) => Ok(EvDistribution(SampleSet(r)))
|
||||
| Error(r) => Error(REOperationError(r))
|
||||
| Error(r) => Error(REDistributionError(SampleSetError(r)))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -235,13 +235,16 @@ module R = {
|
|||
| Ok(a) => f(a)
|
||||
| Error(err) => Error(err)
|
||||
}
|
||||
|
||||
let toExn = (msg: string, x: result<'a, 'b>): 'a =>
|
||||
switch x {
|
||||
| Ok(r) => r
|
||||
| Error(_) => raise(Assertion(msg))
|
||||
}
|
||||
|
||||
let toExnFnString = (errorToStringFn, o) =>
|
||||
switch o {
|
||||
| Ok(r) => r
|
||||
| Error(r) => raise(Assertion(errorToStringFn(r)))
|
||||
}
|
||||
let default = (default, res: Belt.Result.t<'a, 'b>) =>
|
||||
switch res {
|
||||
| Ok(r) => r
|
||||
|
|
Loading…
Reference in New Issue
Block a user