Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/web/bindings-cxx.md
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,12 @@ argument of the `ThreadPool` type allowing a parallelization of the
behaviour integration. The user may refer to the `IntegrateTest2b.cxx`
file to have an example on how this use this second overload.

> ** Note **
>
> The `integrate_debug` function can be used to generate debug files
> to analyse integration failures. See
> [this page](behaviour-integration-failure-analysis.html) for details.

# Support for behaviours' initialize functions {#sec:mgis:2.1:initialize_functions}

Since version 4.1, `MFront` behaviours can declare initialize functions
Expand Down
15 changes: 15 additions & 0 deletions docs/web/release-notes-3.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,21 @@ The `MGIS/Function` library is described on [this page](functions.html).

# Improvements

## The `integrate_debug` functions

The `integrate_debug` function can be used to generate debug files to
analyse integration failures. This function is very customizable, see
[this page](behaviour-integration-failure-analysis.html) for details.

### Example of usage

This snippet shows that the `integrate_debug` functions can be used as
drop-in replacement for the `integrate` function.

~~~~{.cxx}
const auto r = integrate_debug(v, b);
~~~~

## `getDatabase` and `loadFromDatabase`

> **Note**
Expand Down