File: cpptraj_rng.h

package info (click to toggle)
cpptraj 5.1.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 138,900 kB
  • sloc: cpp: 145,621; ansic: 34,635; sh: 11,365; f90: 971; makefile: 770; awk: 242
file content (17 lines) | stat: -rw-r--r-- 258 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef INC_CPPTRAJ_RNG_H
#define INC_CPPTRAJ_RNG_H

#ifdef __cplusplus
extern "C" {
#endif
/// Call with type, seed
void* get_cpptraj_rng(int,int);

void destroy_cpptraj_rng(void*);

unsigned int num_cpptraj_rng(void* );
#ifdef __cplusplus
}
#endif

#endif