| Line | |
|---|
| 1 | /**
|
|---|
| 2 | * @file interface_fcs.h
|
|---|
| 3 | * @author Julian Iseringhausen <isering@ins.uni-bonn.de>
|
|---|
| 4 | * @date Tue Apr 12 17:39:27 2011
|
|---|
| 5 | *
|
|---|
| 6 | * @brief Scafacos C interface.
|
|---|
| 7 | *
|
|---|
| 8 | *
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | #ifdef __cplusplus
|
|---|
| 12 | extern "C" {
|
|---|
| 13 | #endif
|
|---|
| 14 |
|
|---|
| 15 | void VMG_fcs_setup(fcs_int level, fcs_int* periodic, fcs_int max_iter,
|
|---|
| 16 | fcs_int smoothing_steps, fcs_int gamma, fcs_float precision,
|
|---|
| 17 | fcs_float* box_offset, fcs_float box_size,
|
|---|
| 18 | fcs_int near_field_cells, MPI_Comm mpi_comm);
|
|---|
| 19 |
|
|---|
| 20 | int VMG_fcs_check();
|
|---|
| 21 |
|
|---|
| 22 | void VMG_fcs_run(fcs_float* pos, fcs_float* charge, fcs_float* potential, fcs_float* f, fcs_int num_particles_local);
|
|---|
| 23 |
|
|---|
| 24 | void VMG_fcs_print_timer(void);
|
|---|
| 25 |
|
|---|
| 26 | void VMG_fcs_destroy(void);
|
|---|
| 27 |
|
|---|
| 28 | #ifdef __cplusplus
|
|---|
| 29 | } /* extern "C" */
|
|---|
| 30 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.