mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-09 23:45:36 +00:00
36 lines
611 B
C++
36 lines
611 B
C++
#ifndef GRID_STD_H
|
|
#define GRID_STD_H
|
|
|
|
///////////////////
|
|
// Std C++ dependencies
|
|
///////////////////
|
|
#include <cassert>
|
|
#include <complex>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <array>
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <iomanip>
|
|
#include <random>
|
|
#include <functional>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <strings.h>
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
#include <ctime>
|
|
#include <sys/time.h>
|
|
#include <chrono>
|
|
#include <zlib.h>
|
|
|
|
///////////////////
|
|
// Grid config
|
|
///////////////////
|
|
#include "Config.h"
|
|
|
|
#ifdef TOFU
|
|
#undef GRID_COMMS_THREADS
|
|
#endif
|
|
#endif /* GRID_STD_H */
|