ENH remove math (for now)

This commit is contained in:
Nathan Dwarshuis 2023-04-10 23:46:49 -04:00
parent ab70012642
commit 719485f194
1 changed files with 11 additions and 4 deletions

View File

@ -4,9 +4,18 @@ let List/map =
let T = ./Types.dhall
let D = ./Decimal.dhall
let dec =
\(s : Bool) ->
\(w : Natural) ->
\(d : Natural) ->
\(p : Natural) ->
{ whole = w, decimal = d, precision = p, sign = s } : T.Decimal
let M = ./math.dhall
let dec2 = \(s : Bool) -> \(w : Natural) -> \(d : Natural) -> dec s w d 2
let d = dec2 True
let d_ = dec2 False
let nullSplit =
\(a : T.SplitAcnt) ->
@ -175,5 +184,3 @@ in { nullSplit
, PartSplit
}
/\ T
/\ D
/\ M