Get tests to pass for Reducer code

Value: [0.0001 to 0.04]
This commit is contained in:
Sam Nolan 2022-04-25 10:10:07 -04:00
parent 7e4477aeda
commit d60aaa57f7
2 changed files with 4 additions and 4 deletions

View File

@ -10,6 +10,7 @@ import {
continuousShape,
discreteShape,
distributionErrorToString,
internalCode,
} from "../rescript/TypescriptInterface.gen";
export {
makeSampleSetDist,
@ -81,10 +82,6 @@ function tag<a, b>(x: a, y: b): tagged<a, b> {
return { tag: x, value: y };
}
export abstract class internalCode {
protected opaque!: any;
} /* simulate opaque types */
export type squiggleExpression =
| tagged<"symbol", string>
| tagged<"string", string>

View File

@ -54,3 +54,6 @@ let errorValueToString = Reducer_ErrorValue.errorToString
@genType
let distributionErrorToString = DistributionTypes.Error.toString
@genType
type internalCode = ReducerInterface_ExpressionValue.internalCode