Created
June 28, 2024 16:34
-
-
Save bhargavkulk/fa4f59d62d44a4243d3495d624e15a74 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(FPCore (a b c) | |
(/ 1.0 (/ (/ a (- b (sqrt (fma a (* c -4.0) (pow b 2.0))))) -0.5))) | |
fma-define | |
[ 2, 1, 2, 2, 1 ] | |
ltr | |
-------------------- | |
(FPCore (a b c) | |
(/ 1.0 (/ (/ a (- b (sqrt (+ (* a (* c -4.0)) (pow b 2.0))))) -0.5))) | |
associate-*r* | |
[ 2, 1, 2, 2, 1, 1 ] | |
rtl | |
-------------------- | |
(FPCore (a b c) | |
(/ 1.0 (/ (/ a (- b (sqrt (+ (* (* a c) -4.0) (pow b 2.0))))) -0.5))) | |
fma-undefine | |
[ 2, 1, 2, 2, 1 ] | |
ltr | |
-------------------- | |
(FPCore (a b c) | |
(/ 1.0 (/ (/ a (- b (sqrt (fma (* a c) -4.0 (pow b 2.0))))) -0.5))) | |
associate-/r* | |
[ 2 ] | |
ltr | |
-------------------- | |
(FPCore (a b c) | |
(/ 1.0 (/ a (* (- b (sqrt (fma (* a c) -4.0 (pow b 2.0)))) -0.5)))) | |
#f | |
[] | |
goal | |
-------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment