Skip to content

Commit 61115db

Browse files
committed
Bump version number to 2.2.0
1 parent bde7a5e commit 61115db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# dae-cpp
22

33
![tests](https://github.com/dae-cpp/dae-cpp/actions/workflows/cmake-multi-platform.yml/badge.svg)
4-
![version](https://img.shields.io/badge/version-2.1.1-blue)
4+
![version](https://img.shields.io/badge/version-2.2.0-blue)
55
[![Static Badge](https://img.shields.io/badge/Documentation-8A2BE2?logo=githubpages&logoColor=fff&style=flat)](https://dae-cpp.github.io/)
66

77
**A simple but powerful header-only C++ solver for [systems of Differential-Algebraic Equations](https://en.wikipedia.org/wiki/Differential-algebraic_system_of_equations) (DAE).**
@@ -207,7 +207,7 @@ Then add the user-defined Jacobian to the `solve()` method:
207207
my_system.solve(x0, t, MyJacobian());
208208
```
209209

210-
Defining analytic Jacobian matrix can significantly speed up the computation for big systems (with thousands of DAEs).
210+
Defining analytic Jacobian matrix can significantly speed up the computation for big systems (with hundreds and thousands of DAEs).
211211

212212
If deriving the Jacobian matrix manually is not a feasible task (e.g., due to a very complex non-linear RHS), the solver allows the user to specify only the positions of non-zero elements of the Jacobian matrix (i.e., the Jacobian matrix shape). All the derivatives will be calculated automatically with a very small computation time penalty (compared to the manually derived analytic Jacobian). For more details, see the [Jacobian shape example](https://github.com/dae-cpp/dae-cpp/blob/master/examples/jacobian_shape/jacobian_shape.cpp).
213213

dae-cpp/typedefs.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
// dae-cpp version
2525
#define DAECPP_VERSION_MAJOR 2
26-
#define DAECPP_VERSION_MINOR 1
27-
#define DAECPP_VERSION_PATCH 1
26+
#define DAECPP_VERSION_MINOR 2
27+
#define DAECPP_VERSION_PATCH 0
2828

2929
// Internal constants
3030
#define DAECPP_MAX_ORDER 4

0 commit comments

Comments
 (0)