Trisurf Monte Carlo simulator
Samo Penic
2022-05-04 06afc729f9061c1cfa14c78728d61d518324c2f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __GLOBALS
#define __GLOBALS
/* GLOBAL VARIABLES */
#include "general.h"
#include "io.h"
extern int quiet;
extern ts_double V0;
extern ts_double A0;
extern ts_double epsvol;
extern ts_double epsarea;
extern ts_args command_line_args;
extern int force_from_tape;
extern char tapetxt[128000]; //stores text file of the tape
#endif