Skip to content

Commit b281c22

Browse files
Rename SolverInterface to Participant in docs.
1 parent 0b79b3d commit b281c22

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,18 @@ The function syntax is mostly identical to the syntax of the C++ API. The follow
4747
As an example, the C++ API function
4848

4949
```bash
50-
readData(int dataID, int size, const int *valueIndices, double *values)
50+
void readData(
51+
::precice::string_view meshName,
52+
::precice::string_view dataName,
53+
::precice::span<const VertexID> ids,
54+
double relativeReadTime,
55+
::precice::span<double> values) const
5156
```
5257

5358
is found in the MATLAB bindings as
5459

5560
```bash
56-
values = readData(dataID, valueIndices)
61+
values = readData(meshName, dataName, ids, relativeReadTime)
5762
```
5863

5964
## Out of process variant

0 commit comments

Comments
 (0)