Ran formatter
This commit is contained in:
		
							parent
							
								
									47d7ef49cf
								
							
						
					
					
						commit
						4676026aa0
					
				|  | @ -33,7 +33,6 @@ | |||
|     "Rescript" | ||||
|   ], | ||||
|   "author": "Quantified Uncertainty Research Institute", | ||||
|   "license": "MIT", | ||||
|   "dependencies": { | ||||
|     "rescript": "^9.1.4", | ||||
|     "jstat": "^1.9.5", | ||||
|  |  | |||
|  | @ -222,9 +222,8 @@ let dispatchToGenericOutput = ( | |||
|     ->E.R.bind(r => r(f1, f2, f3)) | ||||
|     ->SymbolicConstructors.symbolicResultToOutput | ||||
|   | ("sample", [EvDistribution(dist)]) => Helpers.toFloatFn(#Sample, dist, ~env) | ||||
|   | ("sampleN", [EvDistribution(dist), EvNumber(n)]) => Some( | ||||
|       FloatArray(GenericDist.sampleN(dist, Belt.Int.fromFloat(n))), | ||||
|     ) | ||||
|   | ("sampleN", [EvDistribution(dist), EvNumber(n)]) => | ||||
|     Some(FloatArray(GenericDist.sampleN(dist, Belt.Int.fromFloat(n)))) | ||||
|   | ("mean", [EvDistribution(dist)]) => Helpers.toFloatFn(#Mean, dist, ~env) | ||||
|   | ("integralSum", [EvDistribution(dist)]) => Helpers.toFloatFn(#IntegralSum, dist, ~env) | ||||
|   | ("toString", [EvDistribution(dist)]) => Helpers.toStringFn(ToString, dist, ~env) | ||||
|  | @ -339,7 +338,7 @@ let genericOutputToReducerValue = (o: DistributionOperation.outputType): result< | |||
|   | Float(d) => Ok(EvNumber(d)) | ||||
|   | String(d) => Ok(EvString(d)) | ||||
|   | Bool(d) => Ok(EvBool(d)) | ||||
|   | FloatArray(d) => Ok(EvArray(d |> E.A.fmap(r =>ReducerInterface_ExpressionValue.EvNumber(r)))) | ||||
|   | FloatArray(d) => Ok(EvArray(d |> E.A.fmap(r => ReducerInterface_ExpressionValue.EvNumber(r)))) | ||||
|   | GenDistError(err) => Error(REDistributionError(err)) | ||||
|   } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user