Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 834 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 834 Bytes

ad

This is an automatic differentiation library written in D supporting one-dimensional, real-valued derivatives of arbitrary order. It is not a high performance library. It could become one; I'm not against that by any means! It's just that I originally built this library after learning about automatic differentiation. The elegance of the concept struct me. I had to implement it.

Features

  • supports all of D's arithmetic operators (not tested)
  • supports the same set of functions as std.math (not implemented)
  • allows any type that is semantically a mathematical field and acts like a D floating point type as its underlying value type.
  • supports arbitrary order differentiation, must be fixed a compile time

Examples

To be continued ...

Overview

To be continued ...

Building

To be continued ...