Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chakravala/wilkinson.jl
Toolkit for studying numerical analysis and floating point algebra round-off
https://github.com/chakravala/wilkinson.jl
error-analysis error-propagation floating-point floating-point-arithmetic ieee754 metaprogramming numerical-analysis polynomials
Last synced: about 1 month ago
JSON representation
Toolkit for studying numerical analysis and floating point algebra round-off
- Host: GitHub
- URL: https://github.com/chakravala/wilkinson.jl
- Owner: chakravala
- License: gpl-3.0
- Created: 2018-06-09T21:34:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-16T12:10:50.000Z (10 months ago)
- Last Synced: 2024-05-09T23:42:31.872Z (8 months ago)
- Topics: error-analysis, error-propagation, floating-point, floating-point-arithmetic, ieee754, metaprogramming, numerical-analysis, polynomials
- Language: Julia
- Homepage: https://crucialflow.com/Wilkinson.jl
- Size: 29.3 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wilkinson.jl
[![Build Status](https://travis-ci.org/chakravala/Wilkinson.jl.svg?branch=master)](https://travis-ci.org/chakravala/Wilkinson.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/a1d9jt5ollwat0na/branch/master?svg=true)](https://ci.appveyor.com/project/chakravala/wilkinson-jl)
[![Coverage Status](https://coveralls.io/repos/chakravala/Wilkinson.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/chakravala/Wilkinson.jl?branch=master)
[![codecov.io](http://codecov.io/github/chakravala/Wilkinson.jl/coverage.svg?branch=master)](http://codecov.io/github/chakravala/Wilkinson.jl?branch=master)This package is intended to help provide a complementary detailed analysis of polynomial rounding error estimates using newly defined local and global characteristic methods.
Using automated testing of different polynomial forms, an optimal expression form can be determined.
The methods used include a Simpson-Stieltjes integral method to estimate error bound discrepancy and a computationally efficient characteristic method.
The conclusions of the associated research (to be published by Advances in Engineering Mathematics) indicate the [`SyntaxTree`](https://github.com/chakravala/SyntaxTree.jl)`.exprval` method can be used to select optimal numerical code for polynomial basis functions with the [Reduce.jl](https://github.com/chakravala/Reduce.jl) symbolic rewrite package for the Julia language, which
is based on high-level code generation and macros operating on abstract syntax trees.
Due to the computational simplicity of the expression value method in comparison to the floating point error bound Simpson-Stieltjes integral estimation method, the expression value method is the demonstrably faster, more efficient, and equally reliable method for determining the optimal expression form characterization.Note that this package is not required to use the characterization method (as it is in the `SyntaxTree` package) and the polynomial forms can be generated by the `Reduce` package.
The purpose of this package is to help with the analysis of the characteristic methods and to explore the local properties of the Wilkinson-type error bounds on the floating point pseudo-algebra for polynomials.While the package is fully functional, this package continues to be a work in progress and is possibly subject to breaking changes.
In the near future the source code for the research article preprints, documentation, and experimental data will be included in this repository.