mirror of
https://github.com/paboyle/Grid.git
synced 2025-07-28 18:27:07 +01:00
benchmarks
extras
gcc-bug-report
include
lib
algorithms
allocator
cartesian
communicator
cshift
json
lattice
log
parallelIO
perfmon
pugixml
qcd
serialisation
simd
sitmo_rng
stencil
tensors
threads
util
.dirstamp
DisableWarnings.h
Grid.h
GridCore.h
GridQCDcore.h
GridStd.h
Grid_Eigen_Dense.h
Hadrons
Makefile.am
m4
prerequisites
scripts
tests
.gitignore
.travis.yml
AUTHORS
COPYING
ChangeLog
LICENSE
Makefile.am
NEWS
README
README.md
TODO
VERSION
bootstrap.sh
configure.ac
doxygen.cfg
doxygen.inc
grid-config.in
30 lines
510 B
C++
30 lines
510 B
C++
#ifndef GRID_STD_H
|
|
#define GRID_STD_H
|
|
|
|
///////////////////
|
|
// Std C++ dependencies
|
|
///////////////////
|
|
#include <cassert>
|
|
#include <complex>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <iomanip>
|
|
#include <random>
|
|
#include <functional>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
#include <ctime>
|
|
#include <sys/time.h>
|
|
#include <chrono>
|
|
#include <zlib.h>
|
|
|
|
///////////////////
|
|
// Grid config
|
|
///////////////////
|
|
#include "Config.h"
|
|
|
|
#endif /* GRID_STD_H */
|