-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
47 lines (44 loc) · 1.2 KB
/
main.cpp
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
#include "include/matlib.h"
#include "include/geometry.h"
#include "include/textfunctions.h"
#include "include/CallOption.h"
#include "include/PutOption.h"
#include "include/PieChart.h"
#include "include/LineChart.h"
#include "include/BlackScholesModel.h"
#include "include/MultiStockModel.h"
#include "include/Histogram.h"
#include "include/MonteCarloPricer.h"
#include "include/UpAndOutOption.h"
#include "include/DownAndOutOption.h"
#include "include/Portfolio.h"
#include "include/Matrix.h"
#include "include/Executor.h"
#include "include/threadingexamples.h"
#include "include/MargrabeOption.h"
#include "include/RectangleRulePricer.h"
using namespace std;
int main() {
testMatrix();
testMatlib();
testMultiStockModel();
testBlackScholesModel();
testGeometry();
testPieChart();
testCallOption();
testPutOption();
testLineChart();
testTextFunctions();
testHistogram();
testMonteCarloPricer();
testDownAndOutOption();
testContinuousTimeOptionBase();
testPortfolio();
testPutOption();
testExecutor();
testThreadingExamples();
testUpAndOutOption();
testMargrabeOption();
testRectangleRulePricer();
return 0;
}