?

Average Error: 29.4 → 11.4
Time: 27.3s
Precision: binary64
Cost: 60488

?

\[180 \cdot \frac{\tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi} \]
\[\begin{array}{l} t_0 := \frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\\ t_1 := \tan^{-1} \left(\frac{\left(C - A\right) - \mathsf{hypot}\left(B, A - C\right)}{B}\right)\\ \mathbf{if}\;t_0 \leq -0.5:\\ \;\;\;\;\frac{180}{\frac{\pi}{t_1}}\\ \mathbf{elif}\;t_0 \leq 0:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{else}:\\ \;\;\;\;t_1 \cdot \frac{180}{\pi}\\ \end{array} \]
(FPCore (A B C)
 :precision binary64
 (*
  180.0
  (/
   (atan (* (/ 1.0 B) (- (- C A) (sqrt (+ (pow (- A C) 2.0) (pow B 2.0))))))
   PI)))
(FPCore (A B C)
 :precision binary64
 (let* ((t_0
         (* (/ 1.0 B) (- (- C A) (sqrt (+ (pow (- A C) 2.0) (pow B 2.0))))))
        (t_1 (atan (/ (- (- C A) (hypot B (- A C))) B))))
   (if (<= t_0 -0.5)
     (/ 180.0 (/ PI t_1))
     (if (<= t_0 0.0)
       (* (/ 180.0 PI) (atan (* -0.5 (/ B C))))
       (* t_1 (/ 180.0 PI))))))
double code(double A, double B, double C) {
	return 180.0 * (atan(((1.0 / B) * ((C - A) - sqrt((pow((A - C), 2.0) + pow(B, 2.0)))))) / ((double) M_PI));
}
double code(double A, double B, double C) {
	double t_0 = (1.0 / B) * ((C - A) - sqrt((pow((A - C), 2.0) + pow(B, 2.0))));
	double t_1 = atan((((C - A) - hypot(B, (A - C))) / B));
	double tmp;
	if (t_0 <= -0.5) {
		tmp = 180.0 / (((double) M_PI) / t_1);
	} else if (t_0 <= 0.0) {
		tmp = (180.0 / ((double) M_PI)) * atan((-0.5 * (B / C)));
	} else {
		tmp = t_1 * (180.0 / ((double) M_PI));
	}
	return tmp;
}
public static double code(double A, double B, double C) {
	return 180.0 * (Math.atan(((1.0 / B) * ((C - A) - Math.sqrt((Math.pow((A - C), 2.0) + Math.pow(B, 2.0)))))) / Math.PI);
}
public static double code(double A, double B, double C) {
	double t_0 = (1.0 / B) * ((C - A) - Math.sqrt((Math.pow((A - C), 2.0) + Math.pow(B, 2.0))));
	double t_1 = Math.atan((((C - A) - Math.hypot(B, (A - C))) / B));
	double tmp;
	if (t_0 <= -0.5) {
		tmp = 180.0 / (Math.PI / t_1);
	} else if (t_0 <= 0.0) {
		tmp = (180.0 / Math.PI) * Math.atan((-0.5 * (B / C)));
	} else {
		tmp = t_1 * (180.0 / Math.PI);
	}
	return tmp;
}
def code(A, B, C):
	return 180.0 * (math.atan(((1.0 / B) * ((C - A) - math.sqrt((math.pow((A - C), 2.0) + math.pow(B, 2.0)))))) / math.pi)
def code(A, B, C):
	t_0 = (1.0 / B) * ((C - A) - math.sqrt((math.pow((A - C), 2.0) + math.pow(B, 2.0))))
	t_1 = math.atan((((C - A) - math.hypot(B, (A - C))) / B))
	tmp = 0
	if t_0 <= -0.5:
		tmp = 180.0 / (math.pi / t_1)
	elif t_0 <= 0.0:
		tmp = (180.0 / math.pi) * math.atan((-0.5 * (B / C)))
	else:
		tmp = t_1 * (180.0 / math.pi)
	return tmp
function code(A, B, C)
	return Float64(180.0 * Float64(atan(Float64(Float64(1.0 / B) * Float64(Float64(C - A) - sqrt(Float64((Float64(A - C) ^ 2.0) + (B ^ 2.0)))))) / pi))
end
function code(A, B, C)
	t_0 = Float64(Float64(1.0 / B) * Float64(Float64(C - A) - sqrt(Float64((Float64(A - C) ^ 2.0) + (B ^ 2.0)))))
	t_1 = atan(Float64(Float64(Float64(C - A) - hypot(B, Float64(A - C))) / B))
	tmp = 0.0
	if (t_0 <= -0.5)
		tmp = Float64(180.0 / Float64(pi / t_1));
	elseif (t_0 <= 0.0)
		tmp = Float64(Float64(180.0 / pi) * atan(Float64(-0.5 * Float64(B / C))));
	else
		tmp = Float64(t_1 * Float64(180.0 / pi));
	end
	return tmp
end
function tmp = code(A, B, C)
	tmp = 180.0 * (atan(((1.0 / B) * ((C - A) - sqrt((((A - C) ^ 2.0) + (B ^ 2.0)))))) / pi);
end
function tmp_2 = code(A, B, C)
	t_0 = (1.0 / B) * ((C - A) - sqrt((((A - C) ^ 2.0) + (B ^ 2.0))));
	t_1 = atan((((C - A) - hypot(B, (A - C))) / B));
	tmp = 0.0;
	if (t_0 <= -0.5)
		tmp = 180.0 / (pi / t_1);
	elseif (t_0 <= 0.0)
		tmp = (180.0 / pi) * atan((-0.5 * (B / C)));
	else
		tmp = t_1 * (180.0 / pi);
	end
	tmp_2 = tmp;
end
code[A_, B_, C_] := N[(180.0 * N[(N[ArcTan[N[(N[(1.0 / B), $MachinePrecision] * N[(N[(C - A), $MachinePrecision] - N[Sqrt[N[(N[Power[N[(A - C), $MachinePrecision], 2.0], $MachinePrecision] + N[Power[B, 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]], $MachinePrecision] / Pi), $MachinePrecision]), $MachinePrecision]
code[A_, B_, C_] := Block[{t$95$0 = N[(N[(1.0 / B), $MachinePrecision] * N[(N[(C - A), $MachinePrecision] - N[Sqrt[N[(N[Power[N[(A - C), $MachinePrecision], 2.0], $MachinePrecision] + N[Power[B, 2.0], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$1 = N[ArcTan[N[(N[(N[(C - A), $MachinePrecision] - N[Sqrt[B ^ 2 + N[(A - C), $MachinePrecision] ^ 2], $MachinePrecision]), $MachinePrecision] / B), $MachinePrecision]], $MachinePrecision]}, If[LessEqual[t$95$0, -0.5], N[(180.0 / N[(Pi / t$95$1), $MachinePrecision]), $MachinePrecision], If[LessEqual[t$95$0, 0.0], N[(N[(180.0 / Pi), $MachinePrecision] * N[ArcTan[N[(-0.5 * N[(B / C), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(t$95$1 * N[(180.0 / Pi), $MachinePrecision]), $MachinePrecision]]]]]
180 \cdot \frac{\tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi}
\begin{array}{l}
t_0 := \frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\\
t_1 := \tan^{-1} \left(\frac{\left(C - A\right) - \mathsf{hypot}\left(B, A - C\right)}{B}\right)\\
\mathbf{if}\;t_0 \leq -0.5:\\
\;\;\;\;\frac{180}{\frac{\pi}{t_1}}\\

\mathbf{elif}\;t_0 \leq 0:\\
\;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\

\mathbf{else}:\\
\;\;\;\;t_1 \cdot \frac{180}{\pi}\\


\end{array}

Error?

Try it out?

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation?

  1. Split input into 3 regimes
  2. if (*.f64 (/.f64 1 B) (-.f64 (-.f64 C A) (sqrt.f64 (+.f64 (pow.f64 (-.f64 A C) 2) (pow.f64 B 2))))) < -0.5

    1. Initial program 25.8

      \[180 \cdot \frac{\tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi} \]
    2. Simplified10.7

      \[\leadsto \color{blue}{\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - \left(A + \mathsf{hypot}\left(B, A - C\right)\right)}{B}\right)} \]
      Proof

      [Start]25.8

      \[ 180 \cdot \frac{\tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi} \]

      associate-*r/ [=>]25.8

      \[ \color{blue}{\frac{180 \cdot \tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi}} \]

      associate-*l/ [<=]25.8

      \[ \color{blue}{\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)} \]

      associate-*l/ [=>]25.8

      \[ \frac{180}{\pi} \cdot \tan^{-1} \color{blue}{\left(\frac{1 \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)}{B}\right)} \]
    3. Applied egg-rr7.6

      \[\leadsto \color{blue}{\frac{180}{\frac{\pi}{\tan^{-1} \left(\frac{\left(C - A\right) - \mathsf{hypot}\left(B, A - C\right)}{B}\right)}}} \]

    if -0.5 < (*.f64 (/.f64 1 B) (-.f64 (-.f64 C A) (sqrt.f64 (+.f64 (pow.f64 (-.f64 A C) 2) (pow.f64 B 2))))) < -0.0

    1. Initial program 52.1

      \[180 \cdot \frac{\tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi} \]
    2. Simplified55.5

      \[\leadsto \color{blue}{\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - \left(A + \mathsf{hypot}\left(B, A - C\right)\right)}{B}\right)} \]
      Proof

      [Start]52.1

      \[ 180 \cdot \frac{\tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi} \]

      associate-*r/ [=>]52.1

      \[ \color{blue}{\frac{180 \cdot \tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi}} \]

      associate-*l/ [<=]52.1

      \[ \color{blue}{\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)} \]

      associate-*l/ [=>]52.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \color{blue}{\left(\frac{1 \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)}{B}\right)} \]
    3. Taylor expanded in C around inf 44.2

      \[\leadsto \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\color{blue}{-0.5 \cdot \frac{\left({B}^{2} + {A}^{2}\right) - {\left(-1 \cdot A\right)}^{2}}{C} + -1 \cdot \left(A + -1 \cdot A\right)}}{B}\right) \]
    4. Simplified41.1

      \[\leadsto \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\color{blue}{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(A \cdot A - {\left(-A\right)}^{2}\right)}{C}, A \cdot 0\right)}}{B}\right) \]
      Proof

      [Start]44.2

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{-0.5 \cdot \frac{\left({B}^{2} + {A}^{2}\right) - {\left(-1 \cdot A\right)}^{2}}{C} + -1 \cdot \left(A + -1 \cdot A\right)}{B}\right) \]

      fma-def [=>]44.2

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\color{blue}{\mathsf{fma}\left(-0.5, \frac{\left({B}^{2} + {A}^{2}\right) - {\left(-1 \cdot A\right)}^{2}}{C}, -1 \cdot \left(A + -1 \cdot A\right)\right)}}{B}\right) \]

      associate--l+ [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{\color{blue}{{B}^{2} + \left({A}^{2} - {\left(-1 \cdot A\right)}^{2}\right)}}{C}, -1 \cdot \left(A + -1 \cdot A\right)\right)}{B}\right) \]

      unpow2 [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{\color{blue}{B \cdot B} + \left({A}^{2} - {\left(-1 \cdot A\right)}^{2}\right)}{C}, -1 \cdot \left(A + -1 \cdot A\right)\right)}{B}\right) \]

      unpow2 [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(\color{blue}{A \cdot A} - {\left(-1 \cdot A\right)}^{2}\right)}{C}, -1 \cdot \left(A + -1 \cdot A\right)\right)}{B}\right) \]

      mul-1-neg [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(A \cdot A - {\color{blue}{\left(-A\right)}}^{2}\right)}{C}, -1 \cdot \left(A + -1 \cdot A\right)\right)}{B}\right) \]

      distribute-rgt1-in [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(A \cdot A - {\left(-A\right)}^{2}\right)}{C}, -1 \cdot \color{blue}{\left(\left(-1 + 1\right) \cdot A\right)}\right)}{B}\right) \]

      associate-*r* [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(A \cdot A - {\left(-A\right)}^{2}\right)}{C}, \color{blue}{\left(-1 \cdot \left(-1 + 1\right)\right) \cdot A}\right)}{B}\right) \]

      metadata-eval [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(A \cdot A - {\left(-A\right)}^{2}\right)}{C}, \left(-1 \cdot \color{blue}{0}\right) \cdot A\right)}{B}\right) \]

      metadata-eval [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(A \cdot A - {\left(-A\right)}^{2}\right)}{C}, \color{blue}{0} \cdot A\right)}{B}\right) \]

      metadata-eval [<=]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(A \cdot A - {\left(-A\right)}^{2}\right)}{C}, \color{blue}{\left(-1 + 1\right)} \cdot A\right)}{B}\right) \]

      *-commutative [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(A \cdot A - {\left(-A\right)}^{2}\right)}{C}, \color{blue}{A \cdot \left(-1 + 1\right)}\right)}{B}\right) \]

      metadata-eval [=>]41.1

      \[ \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\mathsf{fma}\left(-0.5, \frac{B \cdot B + \left(A \cdot A - {\left(-A\right)}^{2}\right)}{C}, A \cdot \color{blue}{0}\right)}{B}\right) \]
    5. Taylor expanded in B around 0 33.3

      \[\leadsto \frac{180}{\pi} \cdot \tan^{-1} \color{blue}{\left(-0.5 \cdot \frac{B}{C}\right)} \]

    if -0.0 < (*.f64 (/.f64 1 B) (-.f64 (-.f64 C A) (sqrt.f64 (+.f64 (pow.f64 (-.f64 A C) 2) (pow.f64 B 2)))))

    1. Initial program 25.7

      \[180 \cdot \frac{\tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi} \]
    2. Simplified8.1

      \[\leadsto \color{blue}{\tan^{-1} \left(\frac{\left(C - A\right) - \mathsf{hypot}\left(B, A - C\right)}{B}\right) \cdot \frac{180}{\pi}} \]
      Proof

      [Start]25.7

      \[ 180 \cdot \frac{\tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi} \]

      associate-*r/ [=>]25.7

      \[ \color{blue}{\frac{180 \cdot \tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)}{\pi}} \]

      associate-*l/ [<=]25.7

      \[ \color{blue}{\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right)} \]

      *-commutative [=>]25.7

      \[ \color{blue}{\tan^{-1} \left(\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)\right) \cdot \frac{180}{\pi}} \]

      associate-*l/ [=>]25.7

      \[ \tan^{-1} \color{blue}{\left(\frac{1 \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right)}{B}\right)} \cdot \frac{180}{\pi} \]

      *-lft-identity [=>]25.7

      \[ \tan^{-1} \left(\frac{\color{blue}{\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}}}{B}\right) \cdot \frac{180}{\pi} \]

      +-commutative [=>]25.7

      \[ \tan^{-1} \left(\frac{\left(C - A\right) - \sqrt{\color{blue}{{B}^{2} + {\left(A - C\right)}^{2}}}}{B}\right) \cdot \frac{180}{\pi} \]

      unpow2 [=>]25.7

      \[ \tan^{-1} \left(\frac{\left(C - A\right) - \sqrt{\color{blue}{B \cdot B} + {\left(A - C\right)}^{2}}}{B}\right) \cdot \frac{180}{\pi} \]

      unpow2 [=>]25.7

      \[ \tan^{-1} \left(\frac{\left(C - A\right) - \sqrt{B \cdot B + \color{blue}{\left(A - C\right) \cdot \left(A - C\right)}}}{B}\right) \cdot \frac{180}{\pi} \]

      hypot-def [=>]8.1

      \[ \tan^{-1} \left(\frac{\left(C - A\right) - \color{blue}{\mathsf{hypot}\left(B, A - C\right)}}{B}\right) \cdot \frac{180}{\pi} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification11.4

    \[\leadsto \begin{array}{l} \mathbf{if}\;\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right) \leq -0.5:\\ \;\;\;\;\frac{180}{\frac{\pi}{\tan^{-1} \left(\frac{\left(C - A\right) - \mathsf{hypot}\left(B, A - C\right)}{B}\right)}}\\ \mathbf{elif}\;\frac{1}{B} \cdot \left(\left(C - A\right) - \sqrt{{\left(A - C\right)}^{2} + {B}^{2}}\right) \leq 0:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{else}:\\ \;\;\;\;\tan^{-1} \left(\frac{\left(C - A\right) - \mathsf{hypot}\left(B, A - C\right)}{B}\right) \cdot \frac{180}{\pi}\\ \end{array} \]

Alternatives

Alternative 1
Error14.4
Cost20560
\[\begin{array}{l} t_0 := \tan^{-1} \left(\frac{\left(C - A\right) - \mathsf{hypot}\left(B, A - C\right)}{B}\right) \cdot \frac{180}{\pi}\\ \mathbf{if}\;A \leq -1.8 \cdot 10^{+48}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(0.5 \cdot \left(\frac{C}{\frac{A \cdot A}{B}} + \frac{B}{A}\right)\right)}{\pi}\\ \mathbf{elif}\;A \leq -4.2 \cdot 10^{-74}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq -3.2 \cdot 10^{-122}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(0.5 \cdot \left(\frac{B}{A} + \frac{B \cdot C}{A \cdot A}\right)\right)}{\pi}\\ \mathbf{elif}\;A \leq -2.55 \cdot 10^{-185}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 2
Error13.6
Cost20560
\[\begin{array}{l} t_0 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - \left(A + \mathsf{hypot}\left(B, A - C\right)\right)}{B}\right)\\ \mathbf{if}\;A \leq -1.15 \cdot 10^{+47}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(0.5 \cdot \left(\frac{C}{\frac{A \cdot A}{B}} + \frac{B}{A}\right)\right)}{\pi}\\ \mathbf{elif}\;A \leq -2.6 \cdot 10^{-117}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq -3.9 \cdot 10^{-121}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(0.5 \cdot \left(\frac{B}{A} + \frac{B \cdot C}{A \cdot A}\right)\right)}{\pi}\\ \mathbf{elif}\;A \leq -2.55 \cdot 10^{-185}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{else}:\\ \;\;\;\;t_0\\ \end{array} \]
Alternative 3
Error35.6
Cost15293
\[\begin{array}{l} t_0 := \tan^{-1} \left(0.5 \cdot \frac{B}{A}\right)\\ t_1 := 180 \cdot \frac{t_0}{\pi}\\ t_2 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{A \cdot -2}{B}\right)\\ t_3 := \frac{180 \cdot \tan^{-1} 1}{\pi}\\ t_4 := \frac{180}{\pi} \cdot t_0\\ t_5 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C}{B}\right)\\ t_6 := \frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{if}\;B \leq -2.1 \cdot 10^{+110}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;B \leq -5.2 \cdot 10^{+87}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq -8.5 \cdot 10^{-71}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;B \leq -2.2 \cdot 10^{-130}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;B \leq -4 \cdot 10^{-196}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{-0.5}{\frac{C}{B}}\right)\\ \mathbf{elif}\;B \leq -7.5 \cdot 10^{-201}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq -2 \cdot 10^{-219}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;B \leq -2.55 \cdot 10^{-228}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;B \leq -5.8 \cdot 10^{-268}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;B \leq -1.35 \cdot 10^{-307}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;B \leq 1.32 \cdot 10^{-256}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;B \leq 6 \cdot 10^{-189}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;B \leq 8.8 \cdot 10^{-131} \lor \neg \left(B \leq 9 \cdot 10^{+85}\right) \land B \leq 6 \cdot 10^{+142}:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} -1}{\pi}\\ \end{array} \]
Alternative 4
Error34.4
Cost14900
\[\begin{array}{l} t_0 := \frac{180 \cdot \tan^{-1} 1}{\pi}\\ t_1 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C}{B}\right)\\ t_2 := 180 \cdot \frac{\tan^{-1} \left(0.5 \cdot \frac{B}{A}\right)}{\pi}\\ t_3 := \frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{if}\;B \leq -1.8 \cdot 10^{+110}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;B \leq -1.5 \cdot 10^{+91}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;B \leq -3.8 \cdot 10^{-71}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;B \leq -8.2 \cdot 10^{-133}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;B \leq -4 \cdot 10^{-196}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;B \leq -2.3 \cdot 10^{-201}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;B \leq -1.8 \cdot 10^{-218}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq -2.9 \cdot 10^{-229}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;B \leq -7.5 \cdot 10^{-234}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq 1.95 \cdot 10^{-298}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;B \leq 1.16 \cdot 10^{-256}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq 1.05 \cdot 10^{-185}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;B \leq 6.6 \cdot 10^{-88}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} -1}{\pi}\\ \end{array} \]
Alternative 5
Error34.5
Cost14900
\[\begin{array}{l} t_0 := \frac{180 \cdot \tan^{-1} 1}{\pi}\\ t_1 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C}{B}\right)\\ t_2 := \tan^{-1} \left(0.5 \cdot \frac{B}{A}\right)\\ t_3 := 180 \cdot \frac{t_2}{\pi}\\ t_4 := \frac{180}{\pi} \cdot t_2\\ t_5 := \frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{if}\;B \leq -1.9 \cdot 10^{+110}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;B \leq -9.5 \cdot 10^{+89}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;B \leq -3.25 \cdot 10^{-71}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;B \leq -3.6 \cdot 10^{-130}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;B \leq -4 \cdot 10^{-196}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;B \leq -3.3 \cdot 10^{-201}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;B \leq -3.1 \cdot 10^{-218}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq -2.3 \cdot 10^{-233}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;B \leq -4.1 \cdot 10^{-235}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq 1.95 \cdot 10^{-298}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;B \leq 1.22 \cdot 10^{-256}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq 1.8 \cdot 10^{-184}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;B \leq 5 \cdot 10^{-90}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} -1}{\pi}\\ \end{array} \]
Alternative 6
Error34.4
Cost14900
\[\begin{array}{l} t_0 := \tan^{-1} \left(0.5 \cdot \frac{B}{A}\right)\\ t_1 := 180 \cdot \frac{t_0}{\pi}\\ t_2 := \frac{180 \cdot \tan^{-1} 1}{\pi}\\ t_3 := \frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ t_4 := \frac{180}{\pi} \cdot t_0\\ t_5 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C}{B}\right)\\ \mathbf{if}\;B \leq -1.8 \cdot 10^{+110}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;B \leq -1.5 \cdot 10^{+91}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq -5.4 \cdot 10^{-71}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;B \leq -1.5 \cdot 10^{-131}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;B \leq -4 \cdot 10^{-196}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{-0.5}{\frac{C}{B}}\right)\\ \mathbf{elif}\;B \leq -5.8 \cdot 10^{-201}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq -2.3 \cdot 10^{-219}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;B \leq -4.6 \cdot 10^{-232}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;B \leq -1.35 \cdot 10^{-234}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;B \leq 1.95 \cdot 10^{-298}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;B \leq 1.55 \cdot 10^{-258}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;B \leq 3.3 \cdot 10^{-184}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;B \leq 2 \cdot 10^{-87}:\\ \;\;\;\;t_5\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} -1}{\pi}\\ \end{array} \]
Alternative 7
Error28.6
Cost14500
\[\begin{array}{l} t_0 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - B}{B}\right)\\ t_1 := \frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{if}\;A \leq -7.5 \cdot 10^{+39}:\\ \;\;\;\;\frac{\frac{\tan^{-1} \left(0.5 \cdot \frac{B}{A}\right)}{0.005555555555555556}}{\pi}\\ \mathbf{elif}\;A \leq -5.8 \cdot 10^{-61}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq -4 \cdot 10^{-66}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} 1}{\pi}\\ \mathbf{elif}\;A \leq -8.5 \cdot 10^{-186}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;A \leq 7.2 \cdot 10^{-283}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq 3.8 \cdot 10^{-164}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{B + C}{B}\right)\\ \mathbf{elif}\;A \leq 1.05 \cdot 10^{-112}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq 3.7 \cdot 10^{-42}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;A \leq 6800000000:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{A \cdot -2}{B}\right)\\ \end{array} \]
Alternative 8
Error24.8
Cost14489
\[\begin{array}{l} t_0 := \frac{180 \cdot \tan^{-1} \left(0.5 \cdot \left(\frac{C}{\frac{A \cdot A}{B}} + \frac{B}{A}\right)\right)}{\pi}\\ \mathbf{if}\;B \leq -1.05 \cdot 10^{-63}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{B + C}{B}\right)\\ \mathbf{elif}\;B \leq -2 \cdot 10^{-144}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;B \leq -4 \cdot 10^{-196}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{elif}\;B \leq -5.5 \cdot 10^{-227}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;B \leq 5.1 \cdot 10^{-231} \lor \neg \left(B \leq 1.6 \cdot 10^{-189}\right):\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - \left(B + A\right)}{B}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(\frac{1}{B} \cdot \left(0.5 \cdot \frac{B \cdot B}{A}\right)\right)}{\pi}\\ \end{array} \]
Alternative 9
Error25.3
Cost14356
\[\begin{array}{l} \mathbf{if}\;B \leq -8.5 \cdot 10^{-64}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{B + C}{B}\right)\\ \mathbf{elif}\;B \leq -1.2 \cdot 10^{-131}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\frac{0.5}{A}}{\frac{1}{B}}\right)\\ \mathbf{elif}\;B \leq -2.05 \cdot 10^{-194}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{-0.5}{\frac{C}{B}}\right)\\ \mathbf{elif}\;B \leq 5.2 \cdot 10^{-231}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(\frac{\left(C - A\right) \cdot 2}{B}\right)}{\pi}\\ \mathbf{elif}\;B \leq 1.6 \cdot 10^{-189}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(\frac{1}{B} \cdot \left(0.5 \cdot \frac{B \cdot B}{A}\right)\right)}{\pi}\\ \mathbf{else}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - \left(B + A\right)}{B}\right)\\ \end{array} \]
Alternative 10
Error28.7
Cost14236
\[\begin{array}{l} t_0 := \frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ t_1 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - B}{B}\right)\\ \mathbf{if}\;A \leq -9 \cdot 10^{+39}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(B \cdot \frac{0.5}{A}\right)\\ \mathbf{elif}\;A \leq -1.5 \cdot 10^{-61}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;A \leq -9 \cdot 10^{-63}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} 1}{\pi}\\ \mathbf{elif}\;A \leq -9.5 \cdot 10^{-186}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq 1.02 \cdot 10^{-112}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;A \leq 2.55 \cdot 10^{-42}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq 100000000000:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{A \cdot -2}{B}\right)\\ \end{array} \]
Alternative 11
Error28.7
Cost14236
\[\begin{array}{l} t_0 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - B}{B}\right)\\ t_1 := \frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{if}\;A \leq -7.5 \cdot 10^{+39}:\\ \;\;\;\;\frac{\tan^{-1} \left(0.5 \cdot \frac{B}{A}\right)}{\pi \cdot 0.005555555555555556}\\ \mathbf{elif}\;A \leq -1.5 \cdot 10^{-61}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq -9 \cdot 10^{-67}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} 1}{\pi}\\ \mathbf{elif}\;A \leq -4.3 \cdot 10^{-188}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;A \leq 8.5 \cdot 10^{-113}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq 2.4 \cdot 10^{-42}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;A \leq 410000000:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{A \cdot -2}{B}\right)\\ \end{array} \]
Alternative 12
Error28.6
Cost14236
\[\begin{array}{l} t_0 := \frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - B}{B}\right)\\ t_1 := \frac{180}{\pi} \cdot \tan^{-1} \left(-0.5 \cdot \frac{B}{C}\right)\\ \mathbf{if}\;A \leq -9 \cdot 10^{+39}:\\ \;\;\;\;\frac{\frac{\tan^{-1} \left(0.5 \cdot \frac{B}{A}\right)}{0.005555555555555556}}{\pi}\\ \mathbf{elif}\;A \leq -7.6 \cdot 10^{-57}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq -3.5 \cdot 10^{-66}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} 1}{\pi}\\ \mathbf{elif}\;A \leq -2.45 \cdot 10^{-185}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;A \leq 1.2 \cdot 10^{-112}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;A \leq 2.4 \cdot 10^{-42}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;A \leq 27000000000000:\\ \;\;\;\;t_0\\ \mathbf{else}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{A \cdot -2}{B}\right)\\ \end{array} \]
Alternative 13
Error25.3
Cost14101
\[\begin{array}{l} \mathbf{if}\;B \leq -8.5 \cdot 10^{-64}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{B + C}{B}\right)\\ \mathbf{elif}\;B \leq -7.8 \cdot 10^{-132}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(0.5 \cdot \frac{B}{A}\right)\\ \mathbf{elif}\;B \leq -6.5 \cdot 10^{-195}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{-0.5}{\frac{C}{B}}\right)\\ \mathbf{elif}\;B \leq 8.5 \cdot 10^{-231} \lor \neg \left(B \leq 1.6 \cdot 10^{-189}\right):\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - \left(B + A\right)}{B}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(\frac{A \cdot 0}{B}\right)}{\pi}\\ \end{array} \]
Alternative 14
Error25.3
Cost14101
\[\begin{array}{l} \mathbf{if}\;B \leq -1.02 \cdot 10^{-63}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{B + C}{B}\right)\\ \mathbf{elif}\;B \leq -3.2 \cdot 10^{-131}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\frac{0.5}{A}}{\frac{1}{B}}\right)\\ \mathbf{elif}\;B \leq -5 \cdot 10^{-195}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{-0.5}{\frac{C}{B}}\right)\\ \mathbf{elif}\;B \leq 8.8 \cdot 10^{-231} \lor \neg \left(B \leq 1.6 \cdot 10^{-189}\right):\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - \left(B + A\right)}{B}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(\frac{A \cdot 0}{B}\right)}{\pi}\\ \end{array} \]
Alternative 15
Error25.2
Cost14100
\[\begin{array}{l} \mathbf{if}\;B \leq -9 \cdot 10^{-64}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{B + C}{B}\right)\\ \mathbf{elif}\;B \leq -1.22 \cdot 10^{-132}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{\frac{0.5}{A}}{\frac{1}{B}}\right)\\ \mathbf{elif}\;B \leq -1.15 \cdot 10^{-194}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{-0.5}{\frac{C}{B}}\right)\\ \mathbf{elif}\;B \leq 8.5 \cdot 10^{-231}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(\frac{\left(C - A\right) \cdot 2}{B}\right)}{\pi}\\ \mathbf{elif}\;B \leq 5.2 \cdot 10^{-189}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} \left(\frac{A \cdot 0}{B}\right)}{\pi}\\ \mathbf{else}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C - \left(B + A\right)}{B}\right)\\ \end{array} \]
Alternative 16
Error34.1
Cost13844
\[\begin{array}{l} t_0 := 180 \cdot \frac{\tan^{-1} \left(0.5 \cdot \frac{B}{A}\right)}{\pi}\\ t_1 := \frac{180 \cdot \tan^{-1} 1}{\pi}\\ \mathbf{if}\;B \leq -4.9 \cdot 10^{+110}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq -8.5 \cdot 10^{+88}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;B \leq -6.3 \cdot 10^{-71}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;B \leq -1 \cdot 10^{-201}:\\ \;\;\;\;t_0\\ \mathbf{elif}\;B \leq 2.5 \cdot 10^{-90}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C}{B}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} -1}{\pi}\\ \end{array} \]
Alternative 17
Error33.8
Cost13448
\[\begin{array}{l} \mathbf{if}\;B \leq -1.45 \cdot 10^{-86}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} 1}{\pi}\\ \mathbf{elif}\;B \leq 2.35 \cdot 10^{-93}:\\ \;\;\;\;\frac{180}{\pi} \cdot \tan^{-1} \left(\frac{C}{B}\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} -1}{\pi}\\ \end{array} \]
Alternative 18
Error38.3
Cost13188
\[\begin{array}{l} \mathbf{if}\;B \leq -1.2 \cdot 10^{-308}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} 1}{\pi}\\ \mathbf{else}:\\ \;\;\;\;\frac{180 \cdot \tan^{-1} -1}{\pi}\\ \end{array} \]
Alternative 19
Error50.5
Cost13056
\[\frac{180 \cdot \tan^{-1} -1}{\pi} \]

Error

Reproduce?

herbie shell --seed 2023039 
(FPCore (A B C)
  :name "ABCF->ab-angle angle"
  :precision binary64
  (* 180.0 (/ (atan (* (/ 1.0 B) (- (- C A) (sqrt (+ (pow (- A C) 2.0) (pow B 2.0)))))) PI)))