Skip to content

.SolveQuartic()

Alex edited this page Aug 20, 2020 · 1 revision

.SolveQuartic(): u8

  • Private
  • Exposed mainly for tests. Normally you don't need to use it directly.
  • Returns amount of root solutions in ax^4 + bx^3 + c*x^2 + d*x + e
  • Gets input from input buffer. Any solutions found, outputs to output buffer.

Input Buffer

Index Value
0 a
1 b
2 c
3 d
3 e

Output Buffer

Index Value
0 solution 1
1 solution 2
2 solution 3
3 solution 3