Commit a503aa21 authored by Башмаков Амир Саидович's avatar Башмаков Амир Саидович
Browse files

fix bug

parent 0f27a1c0
No related merge requests found
Showing with 5 additions and 5 deletions
+5 -5
Subproject commit b275df7dbaa38d1bb7e22c04ffc01cfea01ff2e1
Subproject commit 44b2d48830ceeedb53ad72aabfb2e76f7837bf30
......@@ -77,7 +77,7 @@ Complex operator/(const Complex& v1, const Complex& v2) {
std::ostream& operator<<(std::ostream& out, const Complex& v) {
std::stringstream sout;
sout << std::fixed << std::setprecision(2);
//sout << std::fixed << std::setprecision(2);
if (close_enough(v.m_im, 0)) {
return out << v.m_re;
}
......
|1+0i 0+0i 0+0i 0+0i 0+1i|
|1+0i 1+0i 0+0i 0+0i|
|0+0i 1+0i 0+0i 0+0i|
|0+0i 0+0i 1+0i 0+0i|
|0+0i 0+0i 0+0i 1+0i|
\ No newline at end of file
|1+0i 0+0i 0+0i|
|0+0i 0+0i 1+0i 0+0i|
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment