-
Starting at line 332 of reaxff_energy.py, the SPMV_dense function calculates the left hand side of the linear system, Ax, starting at x0. In Line 350, where SPMV_dense is called by linalg.cg, x0 is se…
-
1. Use final newton root refinement in cubic roots solve to refine accuracy
2. For clip intersections (xPoints, yPoints), ensure x(t) or y(t) are outside of the clip (side issue) => extra clip paddin…
-
I've noticed `clamp` is used four times in `solve.jl`. The problem with clamp is that it is non-smooth so it won't play nice with anything that utilizes derivatives, like Newton Raphson.
A straightfo…
-
My algebra is rusty so I may be misinterpreting, but cross referencing with an explanation of Cardano's formula from [WolframAlpha](https://mathworld.wolfram.com/CubicFormula.html) (specifically figur…
-
Currently the diophantine equation solver works fine with linear equations, and quadratic equations. But I think it will be much more complete if there was a solver for cubic equation too. As far as I…
-
http://bugs.povray.org/task/272 (As posted by Simon (infoised))
---------------
Details:
While familiarizing myself with the code, I found some small changes in the solve_cubic function tha…
-
I think I am missing something:
`
C:\Users\User\Downloads\Phase-Envelope-master>make
gfortran -Wall -ffree-line-length-0 -cpp -ggdb -fmax-errors=1 -fcheck=all -O0 -c GaussElimination.f90 -o Gaus…
-
### Expected behavior
I am trying to draw the circle in yellow in the screenshot below. I am using the 3 tangents options to select the circles and the line.
![image](https://github.com/user-a…
-
I think that could be a reason for the cubic saturation evaluation not being as quick as expected for mixtures solved with cubic.
The [saturation_preconditioner](https://github.com/CoolProp/CoolProp/…
-
I just discovered how to find the closest point on a cubic curve using Newton–Raphson method. Please let me know if this is something that can be considered as an addition to bezierTools. Here is the …