Revision c7205d2a73ea9033c3f4cc5b6f01ec3431fba348 authored by Raoul Hodgson on 24 May 2022, 13:30:26 UTC, committed by Raoul Hodgson on 24 May 2022, 13:30:26 UTC
1 parent 0274f40
Raw File
GridStd.h
#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 <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 */
back to top