-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
121 lines (110 loc) · 3.04 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
#include "headers/Matrix.h"
#include "headers/file_writer.h"
#include "headers/gaussian_elimination.h"
#include "headers/utility.h"
#include "headers/rational.h"
#include <iostream>
#include <sstream>
void TerminalMatrix();
void FileMatrix();
using namespace std;
int main() {
cout << "Enter input method\n"
"\n1) Enter matrix by terminal.\n2) Read from file.\n";
int method;
bool selected = false;
while (!selected) {
cin >> method;
switch (method) {
case 1:
selected = true;
TerminalMatrix();
break;
case 2:
selected = true;
FileMatrix();
cout << "\nYour matrix from file\n";
break;
default:
cout << "\nYou selected wrong method, try again\n";
break;
}
}
return 0;
}
void FileMatrix() {
ifstream infile("../Data/A.txt");
string line_A;
getline(infile, line_A);
stringstream line_stream(line_A);
int columns_A = 0;
float value_A;
while (line_stream >> value_A) {
columns_A++;
}
infile.clear();
infile.seekg(0, ios::beg);
int rows_A = 0;
while (getline(infile, line_A)) {rows_A++;}
Matrix A(rows_A, columns_A);
infile.clear();
infile.seekg(0, ios::beg);
infile >> A;
ifstream infile_B("../Data/B.txt");
string line_B;
getline(infile_B, line_B);
stringstream line_stream_B(line_B);
int columns_B = 0;
float value_B;
while (line_stream_B >> value_B) {
columns_B++;
}
infile_B.clear();
infile_B.seekg(0, ios::beg);
int rows_B = 0;
while (getline(infile_B, line_B)) {rows_B++;}
Matrix B(rows_B, columns_B);
infile_B.clear();
infile_B.seekg(0, ios::beg);
infile_B >> B;
if (B.get_columns() > 1) B = B.Transpose();
cout << A;
cout << B;
File_Writer FW_G("../Data/SLE_Solution.txt");
Result X;
float epsilon = 0.0001;
{
Gaussian_Elimination(A, B, X, epsilon);
Write_SLE_Solution(FW_G, X);
cout << "The result for Gaussian Elimination is presented in \"SLE_Solution.txt\" file (Data folder)!\n";
}
}
void TerminalMatrix() {
File_Writer FW_G("../Data/SLE_Solution.txt");
int rows, columns;
cout << "\nEnter matrix A size: (rows, columns)\n";
cin >> rows >> columns;
Matrix A(rows, columns);
A.set_number(1);
cin >> A;
cout << "Matrix A:\n";
A.Print();
cout << "\nEnter matrix B size: (rows, columns)\n";
cin >> rows >> columns;
Matrix B(rows, columns);
B.set_number(2);
cin >> B;
cout << "Matrix B:\n";
B.Print();
if (B.get_columns() > 1) B = B.Transpose();
Result X;
X.set_number(1);
float epsilon = 0.0001;
{
Gaussian_Elimination(A, B, X, epsilon);
Write_SLE_Solution(FW_G, X);
cout << "The result for Gaussian Elimination is presented in \"SLE_Solution.txt\" file (Data folder)!\n";
}
cout << "Result: "<< X.get_state() << "\n";
X.Print();
}