blob: 11f208c4b1ff4526f677c182fedfcc4fab40577b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef TH_INC
#define TH_INC
#include "THGeneral.h"
#include "THBlas.h"
#ifdef USE_LAPACK
#include "THLapack.h"
#endif
#include "THAtomic.h"
#include "THVector.h"
#include "THLogAdd.h"
#include "THRandom.h"
#include "THSize.h"
#include "THStorage.h"
#include "THTensor.h"
#include "THTensorApply.h"
#include "THTensorDimApply.h"
#include "THFile.h"
#include "THDiskFile.h"
#include "THMemoryFile.h"
#endif
|