Skip to content

Releases: imrn99/integraal

0.1.0

26 Oct 08:24
Compare
Choose a tag to compare

Integraal's first (real) release is here!

The crate features a main structure, Integraal, that acts as the entrypoint for your numerical integration.
You can specify the domain and the function of the integral, as well as the numerical integration method using
methods of the structure. It follows a builder-like pattern.

Domains and functions are described using struct enums for the sake of flexibility. The repository contains
usage examples for both analytical expression and sampled values integration. The following numerical
integration methods are implemented:

  • Riemann summation (both left rule and right rule)
  • Trapezoid rule
  • Simpson's rule (different variants depending on the domain & function)
  • Boole's rule
  • Romberg's rule
  • Monte Carlo method

Different methods have different requirements and dependencies. All of this is detailed in the documentation.

In the future, the computation kernel may support different execution backends. This would align with the initial
motivation behind this crate, that is being an experiment over flexible API designs for HPC.


Full Changelog: 0.0.4...0.1.0

0.0.4

15 Oct 16:07
Compare
Choose a tag to compare
  • implement Boole's method
  • implement Monte-Carlo compute method
  • add multiple new functions to test results
  • clean-up code and documentation

0.0.3

08 Sep 15:02
Compare
Choose a tag to compare
  • replace &mut self by mut self for Integraal methods; this allows single-line init & compute
  • add Romberg's & Simpson's methods
  • replace hardcoded f64 with a generic fp type

0.0.2

12 May 14:49
602f0aa
Compare
Choose a tag to compare

0.0.2 alpha

Integraal aims to provide generic and efficient tools for numerical integration in the Rust Programming
Language.

0.0.1

05 May 18:36
Compare
Choose a tag to compare

0.0.1 alpha

Integraal aims to provide generic and efficient tools for numerical integration in the Rust Programming
Language.