-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
66 lines (52 loc) · 1.51 KB
/
main.cpp
File metadata and controls
66 lines (52 loc) · 1.51 KB
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
/*
* 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: main.cpp
* Author: tg
*
* Created on June 6, 2020, 1:17 PM
*/
#include <iostream>
#include <gsl/gsl_vector_double.h>
#include "Parser.h"
#include "myOpt.h"
#include "ResParser.h"
#include "myExceptions.h"
#include "usage.h"
/*
*
*/
int main(int argc, char** argv) {
myOpt::optimAlgo algorith;
Parser parser(argc, argv);
ResParser resParser(parser.insfile().c_str(), parser.verbose());
switch (parser.optimAlgorithm()) {
case 'g': case 'G':
algorith = myOpt::optimAlgo::bfgs2;
break;
case 's': case 'S':
algorith = myOpt::optimAlgo::nelder_mead;
break;
default:
std::cout << "Unsupported optimisation algorithm, only 'g' (BFGS2) or 's' (Nelder-Mead Simplex) allowed\n";
usage();
return EXIT_FAILURE;
}
myOpt celloptim(resParser, parser.crystalSystem(), parser.gsl_steps(),
parser.gsl_tolerance(), parser.gsl_epsgrad(), parser.gsl_maxIter(),
parser.verbose(), algorith);
if (parser.verbose() > 0) {
celloptim.info();
celloptim.settings();
}
double tgt = celloptim.optimise();
if (parser.verbose() == 0) {
std::cout << celloptim.cell_xlformat(resParser.lambda());
} else {
celloptim.info();
}
return 0;
}