tiny cleanup

This commit is contained in:
Quinn Dougherty 2022-04-07 10:21:48 -04:00
parent c50f8a3273
commit a00772ef5c
3 changed files with 5 additions and 3 deletions

View File

@ -10,10 +10,10 @@ type env = {
}
type outputType =
| Dist(GenericDist_Types.genericDist)
| Dist(genericDist)
| Float(float)
| String(string)
| GenDistError(GenericDist_Types.error)
| GenDistError(error)
/*
We're going to add another function to this module later, so first define a

View File

@ -1,6 +1,6 @@
type genericDist =
| PointSet(PointSetTypes.pointSetDist)
| SampleSet(array<float>)
| SampleSet(SampleSet.t)
| Symbolic(SymbolicDistTypes.symbolicDist)
type error =

View File

@ -1,3 +1,5 @@
type t = array<float>
// TODO: Refactor to raise correct error when not enough samples
module Internals = {