Skip to content

Commit

Permalink
Changelog update.
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxSagebaum committed Sep 1, 2021
1 parent 10f71c1 commit c549e49
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ The file `codi.hpp` defines several datatypes. The most important ones are:
- codi::RealForward
- Implementation of the reverse mode of AD:
- codi::RealReverse (most common type, works everywhere, C-compatible)
- codi::RealReverseIndex (reduced tape size compared to codi::RealReverse, no C-like memory operations (e.g. memcpy))
- codi::RealReversePrimal (reduced tape size compared to codi::RealReverseIndex, works everywhere, C-compatible, increased type complexity)
- codi::RealReversePrimalIndex (reduced tape size compared to codi::RealReversePrimal, no C-like memory operations (e.g. memcpy), increased type complexity)
- codi::RealReverseIndex (reduced tape size w.r.t. codi::RealReverse, no C-like memory operations (e.g. memcpy))
- codi::RealReversePrimal (reduced tape size w.r.t. codi::RealReverseIndex, works everywhere, C-compatible, increased type complexity)
- codi::RealReversePrimalIndex (reduced tape size w.r.t. codi::RealReversePrimal, no C-like memory operations (e.g. memcpy), increased type complexity)

We recommend to use the codi::RealReverse type when AD is first introduced to an application.
After that there should be no difficulties in replacing the codi::RealReverse type with other types.
Expand Down Expand Up @@ -61,7 +61,7 @@ Therefore we recomend to force inlining of CoDiPack with the option

## Hello World Example

A very small and simple example for the usage of the RealForward type is the code:
A very small and simple example for the usage of the RealForward type is the following code:

~~~~{.cpp}
#include <codi.hpp>
Expand Down
2 changes: 1 addition & 1 deletion documentation/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog {#Changelog}
===========================

### v 2.0.0 - 2021-**-**
### v 2.0.0 - 2021-09-01
- Complete rewrite of CoDiPack. See \ref Migration_1_9_2_0 for some migration help.
* Drop of modular class architecture.
* Iterators for expression trees.
Expand Down

0 comments on commit c549e49

Please sign in to comment.