Skip to content

Commit

Permalink
Test cube root
Browse files Browse the repository at this point in the history
  • Loading branch information
bmsherman committed Jan 28, 2020
1 parent 7e5cc0e commit faeab0a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Types/SmoothBool.hs
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,8 @@ dedekind_cubert z = dedekind_cut (ArrD (\wk x -> x < 0 || x^3 < dmap wk z))

testBSqrt :: CPoint Real -> [CPoint Real]
testBSqrt z = let R f = dedekind_cut (ArrD (\c x -> x < 0 || x^2 < R c)) in
getDerivTower f z

testBCubert :: CPoint Real -> [CPoint Real]
testBCubert z = let R f = dedekind_cut (ArrD (\c x -> x < 0 || x^3 < R c)) in
getDerivTower f z

0 comments on commit faeab0a

Please sign in to comment.