Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stgeke authored Feb 12, 2019
1 parent 9bcea8e commit 857af45
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ make CC=mpicc GSLIBPATH=<path to gslib>/build all

```sh

cd tests/con
mpirun -np 4 ./con-test case01.co2
cd example
mpirun -np 4 ./example case01.co2
```

## C Interface
Expand All @@ -27,14 +27,14 @@ int parRSB_partMesh(int *part, long long *vtx, int nel, int nve,
int *options, MPI_Comm comm);
```
See example here, see `tests/con/con-test.c`.
See example here, see `example/example.c`.
### Parameters
```text
part (out) ... Destination MPI rank for each element.
vtx (in) ... Vertices of all the elements (size = nel *nve)
nel (in) ... Total number of local elements to MPI rank
part (out) ... Paritition vector of the local elements
vtx (in) ... Vertices of local elements (size = nel *nve)
nel (in) ... Numer of local elements
opt (in) ... Additional parameters (to use defaults set opt[0] = 0)
nve (in) ... Number of vertices of a single element (has to be the same for all)
comm (in) ... MPI Communicator (size determines number of partitions)
Expand Down

0 comments on commit 857af45

Please sign in to comment.