forked from msupernaw/ATL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATL.hpp
109 lines (73 loc) · 1.59 KB
/
ATL.hpp
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: ATL.hpp
* Author: matthewsupernaw
*
* Created on November 3, 2016, 2:01 PM
*/
#ifndef ATL_HPP
#define ATL_HPP
//#include "MinMax.hpp"
#include "ThreadPool.hpp"
#include "ACos.hpp"
#include "ad_cmath.hpp"
#include "Add.hpp"
#include "ASin.hpp"
#include "ATan.hpp"
#include "Ceil.hpp"
#include "CLFAllocator.hpp"
#include "Cos.hpp"
#include "Cosh.hpp"
#include "Divide.hpp"
#include "Exp.hpp"
#include "Expression.hpp"
#include "Fabs.hpp"
#include "Floor.hpp"
#include "FunctionMinimizer.hpp"
#include "Helpers.hpp"
#include "Log.hpp"
#include "Log10.hpp"
//#include "Matrix.hpp"
#include "MinMax.hpp"
#include "Multiply.hpp"
#include "Platform.hpp"
#include "Pow.hpp"
#include "Real.hpp"
#include "Serialize.hpp"
#ifdef ATL_USE_SSE
#include "SIMD.hpp"
#endif
#include "Sin.hpp"
#include "Sinh.hpp"
#include "Sqrt.hpp"
#include "Subtract.hpp"
#include "Tan.hpp"
#include "Tanh.hpp"
#include "Tape.hpp"
#include "ThreadPool.hpp"
#include "Variable.hpp"
#include "Vector.hpp"
#include "Optimization.hpp"
//#include "Utilities/IO/StreamedDataFile.hpp"
namespace atl {
/***********************************
* Miscellaneous Functions Below *
***********************************/
/**
* Introduction
*/
/**
* Automatic Differentiation
*/
/**
* Optimization
*/
/**
* Concurrency
*/
}
#endif /* ATL_HPP */