Jozef Genzor

Results 2 comments of Jozef Genzor

Here are the whole error messages: ``` /Cytnx/src/backend/linalg_internal_cpu/Det_internal.cpp:31:36: error: implicit conversion from '_Complex double' to 'double' is not permitted in C++ od[0] *= (cytnx_complex128)_Rin[i * N + i]; ~ ^~~~~~~~~~~~~~~...

@IvanaGyro I tried to compile the code ``` #include #include #include int main() { double _Complex c_type_right = 123.4 + 45435.1I; std::complex cpp_type_right{23, 23}; std::complex left{43.4, 2532.1}; left *= (std::complex)c_type_right;...