blob: e83119f3523adcb378a61f83923f721f5ec97168 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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
|