summaryrefslogtreecommitdiff
path: root/include/chillmodule.hh
blob: 896cc7cc018a98cd1ef57eeb730d145afa96e6f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CHILLMODULE_HH
#define CHILLMODULE_HH

/*!
 * \file
 * \brief chill interface to python
 */

#include <Python.h>

void finalize_loop(int loop_num_start, int loop_num_end);

int get_loop_num_start();

int get_loop_num_end();
//! pass C methods to python
PyMODINIT_FUNC initchill();

#endif