Skip to content

Latest commit

 

History

History
51 lines (26 loc) · 2.5 KB

test_details.md

File metadata and controls

51 lines (26 loc) · 2.5 KB

Tests used

The tests used can be found in the benchmarks/tests directory.

Ackermann

A basic implementation of the Ackermann function which is one of the simplest and oldest examples of a total computable function that is not primitive recursive.

Bellman Ford

An algorithm for solving the shortest path problem. The code is adapted from examples written by J. Burkardt

Djikstra

An algorithm for solving the shortest path problem. The code is adapted from examples written by J. Burkardt

Euler

Solves an ordinary differential equation using Euler's method. The code is adapted from examples written by J. Burkardt

Midpoint Explicit

Solves an ordinary differential equation using the explicit midpoint method. The code is adapted from examples written by J. Burkardt

Midpoint Fixed

Solves an ordinary differential equation using the implicit midpoint method with a fixed number of iterations. The code is adapted from examples written by J. Burkardt

RK4

Solves an ordinary differential equation using a fourth order Runge-Kutta method. The code is adapted from examples written by J. Burkardt

FD - Linear Convection

Solves a 1D linear convection problem using Finite Differences methods. The code is adapted from examples written by L. A. Barba

FD - Non-Linear Convection

Solves a 1D non-linear convection problem using Finite Differences methods. The code is adapted from examples written by L. A. Barba

FD - Poisson

Solves a 2D Poisson problem using Finite Differences methods. The code is adapted from examples written by L. A. Barba

FD - Laplace

Solves a 2D Laplace problem using Finite Differences methods. The code is adapted from examples written by L. A. Barba

MD

Runs a molecular dynamics simulation. The code is adapted from examples written by J. Burkardt