-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostprocessing.hpp
60 lines (48 loc) · 2.14 KB
/
postprocessing.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
#ifndef POSTPROCESSING_HPP
#define POSTPROCESSING_HPP
#include "common.hpp"
#include "solver.hpp"
#include "sparse_matrix.hpp"
void print_residuals(
double* collected_residual_norms,
double* time_per_iteration,
int collected_residual_norms_count,
int res_check_len
){
std::cout << std::scientific;
std::cout << std::setprecision(16);
int right_flush_width = 30;
// int left_flush_width = 25;
std::string formatted_spaces0(15, ' ');
std::string formatted_spaces1(27, ' ');
std::string formatted_spaces2(8, ' ');
std::cout << std::endl;
std::cout << formatted_spaces0 << "Residual Norms" << formatted_spaces1 << "Time for iteration" << std::endl;
std:: cout << "+------------------------------------------+" << formatted_spaces2 << "+-------------------------+" << std::endl;
for(int i = 0; i < collected_residual_norms_count; ++i){
std::cout << "||A*x_" << i*res_check_len << " - b||_infty = " << collected_residual_norms[i];
std::cout << std::right << std::setw(right_flush_width) << time_per_iteration[i] << "[s]" << std::endl;
}
}
void summary_output(Args *cli_args, Solver *solver){
print_residuals(solver->collected_residual_norms, solver->time_per_iteration, solver->collected_residual_norms_count, solver->residual_check_len);
std::cout << "\nSolver: " << solver->solver_type;
if(!solver->preconditioner_type.empty()){
std::cout << " with preconditioner: " << solver->preconditioner_type;
}
if(solver->convergence_flag){
// x_star = A^{-1}b
std::cout << " converged in: " << solver->iter_count << " iterations." << std::endl;
}
else{
// x_star != A^{-1}b
std::cout << " did not converge after " << solver->iter_count << " iterations." << std::endl;
}
std::cout << "With the stopping criteria \"tol * ||Ax_0 - b||_infty\" is: " << solver->stopping_criteria << std::endl;
std::cout << "The residual of the final iteration is: ||A*x_star - b||_infty = " <<
std::scientific << solver->collected_residual_norms[solver->collected_residual_norms_count - 1] << ".\n";
}
void postprocessing(Args *cli_args, Solver *solver, Timers *timers){
summary_output(cli_args, solver);
};
#endif