-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdafx.h
52 lines (45 loc) · 909 Bytes
/
stdafx.h
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// Created by sbian on 2019/9/3.
//
#ifndef BIM_STDAFX_H
#define BIM_STDAFX_H
#include "targetver.h"
#include <stdio.h>
#ifdef _WIN32
#include <tchar.h>
#endif
// TODO: reference additional headers your program requires here
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <queue>
#include <ctime>
#include <memory>
#include <random>
#include <functional>
#include <cmath>
#include <cfloat>
#include <algorithm>
#include <tuple>
#include <deque>
#if !defined(DSFMT_MEXP)
#ifdef __GNUC__
#define DSFMT_MEXP 19937
#endif
#endif
#include "SFMT/dSFMT/dSFMT.h"
#include "timer.h"
#include "commonStruct.h"
#include "commonFunc.h"
#include "serialize.h"
#include "resultInfo.h"
#include "IOcontroller.h"
#include "argument.h"
#include "graphBase.h"
#include "hyperGraph.h"
#include "celf.h"
#include "celfpp.h"
#include "alg.h"
#endif //BIM_STDAFX_H