Added genType to XYShape to fix tests

This commit is contained in:
Ozzie Gooen 2022-04-05 15:23:39 -04:00
parent 9b494462d4
commit 6c282b0c70

View File

@ -1,12 +1,16 @@
@genType
type xyShape = { type xyShape = {
xs: array<float>, xs: array<float>,
ys: array<float>, ys: array<float>,
} }
@genType
type interpolationStrategy = [ type interpolationStrategy = [
| #Stepwise | #Stepwise
| #Linear | #Linear
] ]
@genType
type extrapolationStrategy = [ type extrapolationStrategy = [
| #UseZero | #UseZero
| #UseOutermostPoints | #UseOutermostPoints