📄 mcdbl_02.cc
字号:
// file: $isip/class/math/matrix/MatrixComplexDouble/mcdbl_02.cc// version: $Id//// isip include files// #include "MatrixComplexDouble.h"#include <Console.h>#include <String.h>// method: diagnose//// arguments:// Integral::DEBUG level: (input) debug level for diagnostics//// return: a boolean value indicating status//boolean MatrixComplexDouble::diagnose(Integral::DEBUG level_a) { //---------------------------------------------------------------------- // // 0. preliminaries // //---------------------------------------------------------------------- // output the class name // if (level_a > Integral::NONE) { SysString output(L"diagnosing class "); output.concat(CLASS_NAME); output.concat(L": "); Console::put(output); Console::increaseIndention(); } //--------------------------------------------------------------------- // // 1. template diagnose method // //--------------------------------------------------------------------- // set indentation // if (level_a > Integral::NONE) { Console::put(L"testing template diagnose method...\n"); Console::increaseIndention(); } // call the template diagnose method // MMatrix<ComplexDouble, complexdouble>::diagnose(level_a); // reset indentation // if (level_a > Integral::NONE) { Console::decreaseIndention(); } //--------------------------------------------------------------------- // // 2. required public methods // //--------------------------------------------------------------------- // set indentation // if (level_a > Integral::NONE) { Console::put(L"testing required public methods...\n"); Console::increaseIndention(); } // test the debug methods // MatrixComplexDouble mat(4, 4, Integral::FULL); mat.setDebug(level_a); if (level_a > Integral::BRIEF) { mat.debug(L"debug"); } // test destructor/constructor(s) // MatrixComplexDouble mat0(4, 4, Integral::FULL); MatrixComplexDouble mat1(4, 4, Integral::SYMMETRIC); MatrixComplexDouble mat2(4, 4, Integral::LOWER_TRIANGULAR); MatrixComplexDouble mat3(4, 4, Integral::DIAGONAL); MatrixComplexDouble mat5(mat0); MatrixComplexDouble mat6(mat1); MatrixComplexDouble mat7(mat2); MatrixComplexDouble mat8(mat3); // test io methods // MatrixComplexDouble val0; MatrixComplexDouble val1(3, 3, Integral::DIAGONAL); MatrixComplexDouble val2(2, 2, Integral::SYMMETRIC); MatrixComplexDouble val3(3, 3, Integral::LOWER_TRIANGULAR); // check i/o for 0x0 matrix // MatrixComplexDouble val4(0, 0, L""); // check i/o for 1x1 matrix // MatrixComplexDouble val5(1, 1, L"1"); // check i/o for 1x3 matrix // MatrixComplexDouble val6(1, 3, L"1, 2, 3"); // check i/o for 3x1 matrix // MatrixComplexDouble val7(3, 1, L"1, 2, 3"); // test i/o for sparse matrix // MatrixComplexDouble val8(3, 3, Integral::SPARSE); val8.setValue(1, 1, 1); val8.setValue(1, 2, 2); val8.setValue(2, 2, 3); MatrixComplexDouble test_val; // declare the array of data // double data[9] = { 1, 2, 3, 2, 4, 5, 3, 5, 6 }; // assign the array of data to matrices // val0.assign(3, 3, data); val1.assign(9); val2.assign(3, 3, data); val3.assign(3, 3, data); // we need binary and text sof files // String tmp_filename0; Integral::makeTemp(tmp_filename0); String tmp_filename1; Integral::makeTemp(tmp_filename1); // open files in write mode // Sof tmp_file0; tmp_file0.open(tmp_filename0, File::WRITE_ONLY, File::TEXT); Sof tmp_file1; tmp_file1.open(tmp_filename1, File::WRITE_ONLY, File::BINARY); // write the values // val0.write(tmp_file0, (long)0); val0.write(tmp_file1, (long)0); val1.write(tmp_file0, (long)1); val1.write(tmp_file1, (long)1); val2.write(tmp_file0, (long)2); val2.write(tmp_file1, (long)2); val3.write(tmp_file0, (long)3); val3.write(tmp_file1, (long)3); val4.write(tmp_file0, (long)4); val4.write(tmp_file1, (long)4); val5.write(tmp_file0, (long)5); val5.write(tmp_file1, (long)5); val6.write(tmp_file0, (long)6); val6.write(tmp_file1, (long)6); val7.write(tmp_file0, (long)7); val7.write(tmp_file1, (long)7); val8.write(tmp_file0, (long)8); val8.write(tmp_file1, (long)8); // close the files // tmp_file0.close(); tmp_file1.close(); // open the files in read mode // tmp_file0.open(tmp_filename0); tmp_file1.open(tmp_filename1); // read the value back // if (!test_val.read(tmp_file0, (long)0) || (test_val.ne(val0))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file1, (long)0) || (test_val.ne(val0))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } test_val.read(tmp_file0, (long)1); if (!test_val.read(tmp_file0, (long)1) || (test_val.ne(val1))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file1, (long)1) || (test_val.ne(val1))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } test_val.read(tmp_file0, (long)2); if (!test_val.read(tmp_file0, (long)2) || (test_val.ne(val2))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file1, (long)2) || (test_val.ne(val2))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } test_val.read(tmp_file0, (long)3); if (!test_val.read(tmp_file0, (long)3) || (test_val.ne(val3))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file1, (long)3) || (test_val.ne(val3))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file0, (long)4) || (test_val.ne(val4))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file1, (long)4) || (test_val.ne(val4))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file0, (long)5) || (test_val.ne(val5))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file1, (long)5) || (test_val.ne(val5))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file0, (long)6) || (test_val.ne(val6))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file1, (long)6) || (test_val.ne(val6))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file0, (long)7) || (test_val.ne(val7))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file1, (long)7) || (test_val.ne(val7))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file0, (long)8) || (test_val.ne(val8))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } if (!test_val.read(tmp_file1, (long)8) || (test_val.ne(val8))) { return Error::handle(name(), L"diagnose", Error::TEST, __FILE__, __LINE__); } // close and delete the temporary files // tmp_file0.close(); tmp_file1.close(); File::remove(tmp_filename0); File::remove(tmp_filename1); // test new and delete // MatrixComplexDouble* ptr; ptr = new MatrixComplexDouble(5); long grow_size = 100; ptr->setGrowSize(grow_size); ptr->assign((double)4); delete ptr; ptr = new MatrixComplexDouble[100]; delete [] ptr; // reset indentation // if (level_a > Integral::NONE) { Console::decreaseIndention(); } //--------------------------------------------------------------------- // // 3. class-specific public methods // extensions to required methods // //--------------------------------------------------------------------- // set indentation // if (level_a > Integral::NONE) { Console::put(L"testing class-specific public methods: extensions to required methods...\n"); Console::increaseIndention(); } // test unichar* constructor // MatrixComplexDouble temp_mat(2, 3, L"5, 5, 5, 5, 5, 5"); if ((temp_mat.getNumRows() != 2) || (temp_mat.getNumColumns() != 3) || (temp_mat.getType() != 0)) { return Error::handle(name(), L"constructor", Error::TEST, __FILE__, __LINE__); } // test the operator= overload method // ComplexDouble val(complexdouble(5.0, 0.0)); mat0 = val; mat1 = val; mat2 = val; mat3 = val; mat0 = mat5; mat1 = mat6; mat2 = mat7; mat3 = mat8; // reset indentation // if (level_a > Integral::NONE) { Console::decreaseIndention(); } //--------------------------------------------------------------------- // // 4. print completion message // //--------------------------------------------------------------------- // reset indentation // if (level_a > Integral::NONE) { Console::decreaseIndention(); } if (level_a > Integral::NONE) { SysString output(L"diagnostics passed for class "); output.concat(name()); output.concat(L"\n"); Console::put(output); } // exit gracefully // return true;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -