step one
This commit is contained in:
parent
7a8d5d13fa
commit
9e663db9dc
68 changed files with 5647 additions and 2958 deletions
11
internal/numerics/doc.go
Normal file
11
internal/numerics/doc.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// Package numerics provides the numerical primitives used by the trajectory
|
||||
// engine: regular-grid multilinear interpolation, monotone bisection, and
|
||||
// a generic explicit Runge-Kutta-4 integrator with binary-search refinement
|
||||
// of a termination point.
|
||||
//
|
||||
// The package has no dependencies on any domain type. State and derivative
|
||||
// types are generic, and all coordinate-wrap or unit-conversion semantics
|
||||
// live in the caller.
|
||||
//
|
||||
// All algorithms are documented in docs/numerics.tex.
|
||||
package numerics
|
||||
Loading…
Add table
Add a link
Reference in a new issue