source: src/interface/interface_fcs.h@ 66f24d

Last change on this file since 66f24d was 48b662, checked in by Olaf Lenz <olenz@…>, 14 years ago

Moved files in scafacos_fcs one level up.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@847 5161e1c8-67bf-11de-9fd5-51895aff932f

  • Property mode set to 100644
File size: 637 bytes
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
12extern "C" {
13#endif
14
15void VMGInterfaceFCSInit(vmg_int level, vmg_int periodic, vmg_int spline_degree,
16 vmg_int max_iter, vmg_int smoothing_steps, vmg_int gamma,
17 vmg_float precision, vmg_float box_begin, vmg_float box_end,
18 MPI_Comm mpi_comm);
19
20void VMGInterfaceFCSRun(vmg_float* x, vmg_float* q, vmg_float* p, vmg_float* f, vmg_int num_particles_local);
21
22void VMGInterfaceFCSDestroy(void);
23
24#ifdef __cplusplus
25} /* extern "C" */
26#endif
Note: See TracBrowser for help on using the repository browser.