Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 95b6fcd

Browse files
committed
Add version badge to the home page, start writing solution manager page
1 parent 711df12 commit 95b6fcd

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docs/index.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ layout: home
44
nav_order: 1
55
---
66

7+
![version](https://img.shields.io/badge/version-2.0.0-blue)
8+
79
<p align="center">
810
<img src="../assets/images/logo.png" alt="dae-cpp logo" width="250"/>
911
</p>
1012

11-
1213
{: .note }
1314
This is a massively reworked and updated version of `dae-cpp`, which is incompatible with the previous version (`1.x`). If your project still relies on the old `dae-cpp`, it is archived in the [legacy](https://github.com/dae-cpp/dae-cpp/tree/legacy) branch.
1415

docs/solution-manager.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ Work in progress
99

1010
# Solution Manager class
1111

12-
Text
12+
The Solution Manager class can serve as a solution observer and/or as an event function that stops computation when a certain event occurs. Solution Manager functor will be called every time step, providing the time `t` and the corresponding solution `x` for further post-processing. If the functor returns an integer which is not equal to `0` (i.e., `true`), the computation will immediately stop.
1313

14-
## Subtitle
14+
The solver provides a derived from the Solution Manager class called `daecpp::Solution`, which writes the solution vector `x` and time `t` every time step or every specific time defined by the user into the [solution holder](#solution-holder) object. The user can access this object for further post-processing, printing the solution on the screen or writing it to a file.
1515

16-
Text
16+
## Solution holder
17+
18+
## Solution class

0 commit comments

Comments
 (0)