MOAB: Mesh Oriented datABase
(version 5.4.1)
|
Definition at line 42 of file AveragingQMTest.cpp.
void AveragingQMTest::check_average_and_weights | ( | const double * | vals, |
unsigned | n, | ||
QualityMetric::AveragingMethod | method, | ||
const double * | weights | ||
) | [private] |
Definition at line 499 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metric_and_weights(), MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT, CPPUNIT_ASSERT_DOUBLES_EQUAL, and n.
{ MsqPrintError err( std::cout ); AveragingQM aqm( method ); CPPUNIT_ASSERT( n > 0 ); std::vector< double > working( n ); std::copy( vals, vals + n, working.begin() ); double avg1, avg2; avg1 = aqm.average_metrics( vals, n, err ); ASSERT_NO_ERROR( err ); avg2 = aqm.average_metric_and_weights( arrptr( working ), n, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( avg1, avg2, 1e-6 ); for( unsigned i = 0; i < n; ++i ) CPPUNIT_ASSERT_DOUBLES_EQUAL( weights[i], working[i], 1e-6 ); }
void AveragingQMTest::check_average_and_weights_fails | ( | QualityMetric::AveragingMethod | scheme | ) | [private] |
Definition at line 662 of file AveragingQMTest.cpp.
References MBMesquite::AveragingQM::average_metric_and_weights(), and CPPUNIT_ASSERT.
{ MsqError err; AveragingQM aqm( scheme ); double w[] = { 1.0, 2.0 }; aqm.average_metric_and_weights( w, 2, err ); CPPUNIT_ASSERT( err ); }
void AveragingQMTest::check_average_gradient_fails | ( | QualityMetric::AveragingMethod | scheme | ) | [private] |
Definition at line 767 of file AveragingQMTest.cpp.
References MBMesquite::AveragingQM::average_corner_gradients(), CPPUNIT_ASSERT, and MBMesquite::QUADRILATERAL.
{ double vals[] = { 1, 2, -1, 0.5 }; Vector3D grads[12], vtxgrads[4]; for( unsigned i = 0; i < 12; ++i ) grads[i] = Vector3D( (double)i ); MsqError err; AveragingQM aqm( scheme ); aqm.average_corner_gradients( QUADRILATERAL, 0, 4, vals, grads, vtxgrads, err ); CPPUNIT_ASSERT( err ); }
void AveragingQMTest::check_average_gradients | ( | QualityMetric::AveragingMethod | scheme | ) | [private] |
Definition at line 691 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_corner_gradients(), MBMesquite::AveragingQM::average_metric_and_weights(), CPPUNIT_ASSERT_DOUBLES_EQUAL, CPPUNIT_ASSERT_VECTORS_EQUAL, fixed, and MBMesquite::QUADRILATERAL.
{ double vals1[] = { 1, -2, -1, 0.5 }; double vals2[] = { 1, -2, -1, 0.5 }; Vector3D grads[12], vtxgrads[4]; for( unsigned i = 0; i < 12; ++i ) grads[i] = Vector3D( (double)i ); uint32_t fixed = 0x2; // mark second vertex as fixed Vector3D exp; MsqError err; AveragingQM aqm( scheme ); double a1 = aqm.average_metric_and_weights( vals1, 4, err ); ASSERT_NO_ERROR( err ); double a2 = aqm.average_corner_gradients( QUADRILATERAL, fixed, 4, vals2, grads, vtxgrads, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( a1, a2, 1e-8 ); exp = vals1[0] * grads[0] + vals1[1] * grads[5] + vals1[3] * grads[10]; CPPUNIT_ASSERT_VECTORS_EQUAL( exp, vtxgrads[0], 1e-6 ); exp = vals1[1] * grads[4] + vals1[2] * grads[6] + vals1[3] * grads[11]; CPPUNIT_ASSERT_VECTORS_EQUAL( exp, vtxgrads[2], 1e-6 ); exp = vals1[0] * grads[2] + vals1[2] * grads[7] + vals1[3] * grads[9]; CPPUNIT_ASSERT_VECTORS_EQUAL( exp, vtxgrads[3], 1e-6 ); }
void AveragingQMTest::check_hessian_diagonal_fails | ( | QualityMetric::AveragingMethod | scheme | ) | [private] |
Definition at line 920 of file AveragingQMTest.cpp.
References MBMesquite::AveragingQM::average_corner_hessian_diagonals(), CPPUNIT_ASSERT, fixed, and MBMesquite::TRIANGLE.
{ // define corner values, gradients and Hessians for a triangle double vals[] = { 1, 2, 0.5 }; const Vector3D grads[9] = { Vector3D( 1.0 ), Vector3D( 2.0 ), Vector3D( 3.0 ), Vector3D( 4.0 ), Vector3D( 5.0 ), Vector3D( 6.0 ), Vector3D( 7.0 ), Vector3D( 8.0 ), Vector3D( 9.0 ) }; const Matrix3D hesss[18] = { Matrix3D( 1.0 ), Matrix3D( 2.0 ), Matrix3D( -1. ), Matrix3D( 0.5 ), Matrix3D( 6.0 ), Matrix3D( 1.1 ), Matrix3D( 1.2 ), Matrix3D( 0.3 ), Matrix3D( 0.0 ), Matrix3D( 22. ), Matrix3D( -2. ), Matrix3D( 4.3 ), Matrix3D( 0.8 ), Matrix3D( 1, 7 ), Matrix3D( -.2 ), Matrix3D( 0.5 ), Matrix3D( 7.0 ), Matrix3D( 1.5 ) }; Vector3D vtx_grad[3]; SymMatrix3D vtx_hess[6]; MsqError err; AveragingQM aqm( scheme ); uint32_t fixed = 0x4; // mark third vertex as fixed aqm.average_corner_hessian_diagonals( TRIANGLE, fixed, 3, vals, grads, hesss, vtx_grad, vtx_hess, err ); CPPUNIT_ASSERT( err ); const SymMatrix3D diags[9] = { SymMatrix3D( 1.0 ), SymMatrix3D( 0.5 ), SymMatrix3D( 1.0 ), SymMatrix3D( 1.2 ), SymMatrix3D( 22. ), SymMatrix3D( 4.3 ), SymMatrix3D( 0.8 ), SymMatrix3D( 0.5 ), SymMatrix3D( 1.5 ) }; aqm.average_corner_hessian_diagonals( TRIANGLE, fixed, 3, vals, grads, diags, vtx_grad, vtx_hess, err ); CPPUNIT_ASSERT( err ); }
void AveragingQMTest::check_hessian_fails | ( | QualityMetric::AveragingMethod | scheme | ) | [private] |
Definition at line 1057 of file AveragingQMTest.cpp.
References MBMesquite::AveragingQM::average_corner_hessians(), CPPUNIT_ASSERT, fixed, and MBMesquite::TRIANGLE.
{ // define corner values, gradients and Hessians for a triangle double vals[] = { 1, 2, 0.5 }; const Vector3D grads[9] = { Vector3D( 1.0 ), Vector3D( 2.0 ), Vector3D( 3.0 ), Vector3D( 4.0 ), Vector3D( 5.0 ), Vector3D( 6.0 ), Vector3D( 7.0 ), Vector3D( 8.0 ), Vector3D( 9.0 ) }; const Matrix3D hesss[18] = { Matrix3D( 1.0 ), Matrix3D( 2.0 ), Matrix3D( -1. ), Matrix3D( 0.5 ), Matrix3D( 6.0 ), Matrix3D( 1.1 ), Matrix3D( 1.2 ), Matrix3D( 0.3 ), Matrix3D( 0.0 ), Matrix3D( 22. ), Matrix3D( -2. ), Matrix3D( 4.3 ), Matrix3D( 0.8 ), Matrix3D( 1, 7 ), Matrix3D( -.2 ), Matrix3D( 0.5 ), Matrix3D( 7.0 ), Matrix3D( 1.5 ) }; Vector3D vtx_grad[3]; Matrix3D vtx_hess[6]; MsqError err; AveragingQM aqm( scheme ); uint32_t fixed = 0x4; // mark third vertex as fixed aqm.average_corner_hessians( TRIANGLE, fixed, 3, vals, grads, hesss, vtx_grad, vtx_hess, err ); CPPUNIT_ASSERT( err ); }
void AveragingQMTest::check_pmean_hessian | ( | QualityMetric::AveragingMethod | scheme, |
double | inner_power, | ||
double | outer_power, | ||
bool | scale | ||
) | [private] |
Definition at line 1013 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_corner_hessians(), CPPUNIT_ASSERT_DOUBLES_EQUAL, CPPUNIT_ASSERT_MATRICES_EQUAL, CPPUNIT_ASSERT_VECTORS_EQUAL, fixed, pmean_of_triangle_corner_hessians(), and MBMesquite::TRIANGLE.
{ // define corner values, gradients and Hessians for a triangle double vals[] = { 1, 2, 0.5 }; const Vector3D grads[9] = { Vector3D( 0, 1, 1 ), Vector3D( 0, 2, 2 ), Vector3D( 0, 3, 3 ), Vector3D( 0, 4, 4 ), Vector3D( 0, 5, 5 ), Vector3D( 0, 6, 6 ), Vector3D( 0, 7, 7 ), Vector3D( 0, 8, 8 ), Vector3D( 0, 9, 9 ) }; Matrix3D hesss[18] = { Matrix3D( 1.0 ), Matrix3D( 2.0 ), Matrix3D( -1. ), Matrix3D( 0.5 ), Matrix3D( 6.0 ), Matrix3D( 1.1 ), Matrix3D( 1.2 ), Matrix3D( 0.3 ), Matrix3D( 0.0 ), Matrix3D( 22. ), Matrix3D( -2. ), Matrix3D( 4.3 ), Matrix3D( 0.8 ), Matrix3D( 1, 7 ), Matrix3D( -.2 ), Matrix3D( 0.5 ), Matrix3D( 7.0 ), Matrix3D( 1.5 ) }; // change some values so we catch transpositional errors for( unsigned i = 0; i < sizeof( hesss ) / sizeof( hesss[0] ); ++i ) hesss[i][2][2] = 0.0; Vector3D aqm_grad[3], exp_grad[3]; Matrix3D aqm_hess[6], exp_hess[6]; ; MsqPrintError err( std::cout ); AveragingQM aqm( scheme ); uint32_t fixed = 0x4; // mark third vertex as fixed double aqm_avg, exp_avg; exp_avg = pmean_of_triangle_corner_hessians( inner_power, outer_power, vals, grads, hesss, exp_grad, exp_hess, scale ); aqm_avg = aqm.average_corner_hessians( TRIANGLE, fixed, 3, vals, grads, hesss, aqm_grad, aqm_hess, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp_avg, aqm_avg, 1e-6 ); // only check gradient terms for free vertices CPPUNIT_ASSERT_VECTORS_EQUAL( exp_grad[0], aqm_grad[0], 1e-6 ); CPPUNIT_ASSERT_VECTORS_EQUAL( exp_grad[1], aqm_grad[1], 1e-6 ); // only check Hessian terms for free vertices CPPUNIT_ASSERT_MATRICES_EQUAL( exp_hess[0], aqm_hess[0], 1e-6 ); CPPUNIT_ASSERT_MATRICES_EQUAL( exp_hess[1], aqm_hess[1], 1e-6 ); CPPUNIT_ASSERT_MATRICES_EQUAL( exp_hess[3], aqm_hess[3], 1e-6 ); }
void AveragingQMTest::check_pmean_hessian_diagonals | ( | QualityMetric::AveragingMethod | scheme, |
double | inner_power, | ||
double | outer_power, | ||
bool | scale | ||
) | [private] |
Definition at line 858 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_corner_hessian_diagonals(), CPPUNIT_ASSERT_DOUBLES_EQUAL, CPPUNIT_ASSERT_MATRICES_EQUAL, CPPUNIT_ASSERT_VECTORS_EQUAL, fixed, pmean_of_triangle_corner_hessians(), MBMesquite::TRIANGLE, and MBMesquite::Matrix3D::upper().
{ MsqPrintError err( std::cout ); AveragingQM aqm( scheme ); uint32_t fixed = 0; // mark no vertices as fixed // define corner values, gradients and Hessians for a triangle double vals[] = { 1, 2, 0.5 }; const Vector3D grads[9] = { Vector3D( 0, 1, 1 ), Vector3D( 0, 2, 2 ), Vector3D( 0, 3, 3 ), Vector3D( 0, 4, 4 ), Vector3D( 0, 5, 5 ), Vector3D( 0, 6, 6 ), Vector3D( 0, 7, 7 ), Vector3D( 0, 8, 8 ), Vector3D( 0, 9, 9 ) }; Matrix3D hesss[18] = { Matrix3D( 1.0 ), Matrix3D( 2.0 ), Matrix3D( -1. ), Matrix3D( 0.5 ), Matrix3D( 6.0 ), Matrix3D( 1.1 ), Matrix3D( 1.2 ), Matrix3D( 0.3 ), Matrix3D( 0.0 ), Matrix3D( 22. ), Matrix3D( -2. ), Matrix3D( 4.3 ), Matrix3D( 0.8 ), Matrix3D( 1, 7 ), Matrix3D( -.2 ), Matrix3D( 0.5 ), Matrix3D( 7.0 ), Matrix3D( 1.5 ) }; // change some values so we catch transpositional errors for( unsigned i = 0; i < sizeof( hesss ) / sizeof( hesss[0] ); ++i ) hesss[i][2][2] = 0.0; // Calculate expected values Vector3D aqm_grad[3], exp_grad[3]; Matrix3D exp_hess[6]; double aqm_avg, exp_avg; exp_avg = pmean_of_triangle_corner_hessians( inner_power, outer_power, vals, grads, hesss, exp_grad, exp_hess, scale ); // Test calculation of diagonal from full corner hessian data. SymMatrix3D aqm_hess[3] = { 1, 2, 3 }; aqm_avg = aqm.average_corner_hessian_diagonals( TRIANGLE, fixed, 3, vals, grads, hesss, aqm_grad, aqm_hess, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp_avg, aqm_avg, 1e-6 ); CPPUNIT_ASSERT_VECTORS_EQUAL( exp_grad[0], aqm_grad[0], 1e-6 ); CPPUNIT_ASSERT_VECTORS_EQUAL( exp_grad[1], aqm_grad[1], 1e-6 ); CPPUNIT_ASSERT_VECTORS_EQUAL( exp_grad[2], aqm_grad[2], 1e-6 ); CPPUNIT_ASSERT_MATRICES_EQUAL( exp_hess[0], Matrix3D( aqm_hess[0] ), 1e-6 ); CPPUNIT_ASSERT_MATRICES_EQUAL( exp_hess[3], Matrix3D( aqm_hess[1] ), 1e-6 ); CPPUNIT_ASSERT_MATRICES_EQUAL( exp_hess[5], Matrix3D( aqm_hess[2] ), 1e-6 ); // Test calculation of diagonal from diagonal corner hessian data. SymMatrix3D diags[9] = { hesss[0].upper(), hesss[3].upper(), hesss[5].upper(), hesss[6].upper(), hesss[9].upper(), hesss[11].upper(), hesss[12].upper(), hesss[15].upper(), hesss[17].upper() }; aqm_avg = aqm.average_corner_hessian_diagonals( TRIANGLE, fixed, 3, vals, grads, diags, aqm_grad, aqm_hess, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp_avg, aqm_avg, 1e-6 ); CPPUNIT_ASSERT_VECTORS_EQUAL( exp_grad[0], aqm_grad[0], 1e-6 ); CPPUNIT_ASSERT_VECTORS_EQUAL( exp_grad[1], aqm_grad[1], 1e-6 ); CPPUNIT_ASSERT_VECTORS_EQUAL( exp_grad[2], aqm_grad[2], 1e-6 ); CPPUNIT_ASSERT_MATRICES_EQUAL( exp_hess[0], Matrix3D( aqm_hess[0] ), 1e-6 ); CPPUNIT_ASSERT_MATRICES_EQUAL( exp_hess[3], Matrix3D( aqm_hess[1] ), 1e-6 ); CPPUNIT_ASSERT_MATRICES_EQUAL( exp_hess[5], Matrix3D( aqm_hess[2] ), 1e-6 ); }
AveragingQMTest::CPPUNIT_TEST | ( | test_average_metrics_liner | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_metrics_rms | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_metrics_hms | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_metrics_minimum | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_metrics_maximum | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_metrics_harmonic | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_metrics_geometric | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_metrics_sum | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_and_weights_linear | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_and_weights_rms | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_and_weights_hms | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_and_weights_sum | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_corner_hessian_diagonals_standard_deviation | ) | [private] |
AveragingQMTest::CPPUNIT_TEST | ( | test_average_corner_hessian_diagonals_sum_of_ratios_squared | ) | [private] |
AveragingQMTest::CPPUNIT_TEST_SUITE | ( | AveragingQMTest | ) | [private] |
AveragingQMTest::CPPUNIT_TEST_SUITE_END | ( | ) | [private] |
Definition at line 620 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), MBMesquite::QualityMetric::GEOMETRIC, and geometric_mean().
{ std::vector< double > weights1( LEN_LIST_1 ), weights2( LEN_LIST_2 ); unsigned i; double g; g = geometric_mean( VAL_LIST_1, LEN_LIST_1 ); for( i = 0; i < LEN_LIST_1; ++i ) { weights1[i] = g / VAL_LIST_1[i] / LEN_LIST_1; } check_average_and_weights( VAL_LIST_1, LEN_LIST_1, QualityMetric::GEOMETRIC, arrptr( weights1 ) ); g = geometric_mean( VAL_LIST_2, LEN_LIST_2 ); for( i = 0; i < LEN_LIST_2; ++i ) { weights2[i] = g / VAL_LIST_2[i] / LEN_LIST_2; } check_average_and_weights( VAL_LIST_2, LEN_LIST_2, QualityMetric::GEOMETRIC, arrptr( weights2 ) ); }
Definition at line 597 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), MBMesquite::QualityMetric::HARMONIC, and pmean().
{ std::vector< double > weights1( LEN_LIST_1 ), weights2( LEN_LIST_2 ); unsigned i; double h, tmp; h = pmean( VAL_LIST_1, LEN_LIST_1, -1.0 ); for( i = 0; i < LEN_LIST_1; ++i ) { tmp = h / VAL_LIST_1[i]; weights1[i] = tmp * tmp / LEN_LIST_1; } check_average_and_weights( VAL_LIST_1, LEN_LIST_1, QualityMetric::HARMONIC, arrptr( weights1 ) ); h = pmean( VAL_LIST_2, LEN_LIST_2, -1.0 ); for( i = 0; i < LEN_LIST_2; ++i ) { tmp = h / VAL_LIST_2[i]; weights2[i] = tmp * tmp / LEN_LIST_2; } check_average_and_weights( VAL_LIST_2, LEN_LIST_2, QualityMetric::HARMONIC, arrptr( weights2 ) ); }
Definition at line 546 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), MBMesquite::QualityMetric::HMS, and pmean().
{ std::vector< double > weights1( LEN_LIST_1 ), weights2( LEN_LIST_2 ); unsigned i; double hms, tmp; hms = pmean( VAL_LIST_1, LEN_LIST_1, -2.0 ); for( i = 0; i < LEN_LIST_1; ++i ) { tmp = hms / VAL_LIST_1[i]; weights1[i] = tmp * tmp * tmp / LEN_LIST_1; } check_average_and_weights( VAL_LIST_1, LEN_LIST_1, QualityMetric::HMS, arrptr( weights1 ) ); hms = pmean( VAL_LIST_2, LEN_LIST_2, -2.0 ); for( i = 0; i < LEN_LIST_2; ++i ) { tmp = hms / VAL_LIST_2[i]; weights2[i] = tmp * tmp * tmp / LEN_LIST_2; } check_average_and_weights( VAL_LIST_2, LEN_LIST_2, QualityMetric::HMS, arrptr( weights2 ) ); }
Definition at line 522 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), and MBMesquite::QualityMetric::LINEAR.
{ std::vector< double > weights1( LEN_LIST_1, 1.0 / LEN_LIST_1 ), weights2( LEN_LIST_2, 1.0 / LEN_LIST_2 ); check_average_and_weights( VAL_LIST_1, LEN_LIST_1, QualityMetric::LINEAR, arrptr( weights1 ) ); check_average_and_weights( VAL_LIST_2, LEN_LIST_2, QualityMetric::LINEAR, arrptr( weights2 ) ); }
Definition at line 681 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAX_MINUS_MIN.
{ check_average_and_weights_fails( QualityMetric::MAX_MINUS_MIN ); }
Definition at line 676 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAX_OVER_MIN.
{ check_average_and_weights_fails( QualityMetric::MAX_OVER_MIN ); }
Definition at line 583 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), and MBMesquite::QualityMetric::MAXIMUM.
{ std::vector< double > weights1( LEN_LIST_1, 0.0 ), weights2( LEN_LIST_2, 0.0 ); const double* ptr; ptr = std::max_element( VAL_LIST_1, VAL_LIST_1 + LEN_LIST_1 ); weights1[ptr - VAL_LIST_1] = 1.0; check_average_and_weights( VAL_LIST_1, LEN_LIST_1, QualityMetric::MAXIMUM, arrptr( weights1 ) ); ptr = std::max_element( VAL_LIST_2, VAL_LIST_2 + LEN_LIST_2 ); weights2[ptr - VAL_LIST_2] = 1.0; check_average_and_weights( VAL_LIST_2, LEN_LIST_2, QualityMetric::MAXIMUM, arrptr( weights2 ) ); }
Definition at line 569 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), and MBMesquite::QualityMetric::MINIMUM.
{ std::vector< double > weights1( LEN_LIST_1, 0.0 ), weights2( LEN_LIST_2, 0.0 ); const double* ptr; ptr = std::min_element( VAL_LIST_1, VAL_LIST_1 + LEN_LIST_1 ); weights1[ptr - VAL_LIST_1] = 1.0; check_average_and_weights( VAL_LIST_1, LEN_LIST_1, QualityMetric::MINIMUM, arrptr( weights1 ) ); ptr = std::min_element( VAL_LIST_2, VAL_LIST_2 + LEN_LIST_2 ); weights2[ptr - VAL_LIST_2] = 1.0; check_average_and_weights( VAL_LIST_2, LEN_LIST_2, QualityMetric::MINIMUM, arrptr( weights2 ) ); }
Definition at line 529 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), pmean(), and MBMesquite::QualityMetric::RMS.
{ std::vector< double > weights1( LEN_LIST_1 ), weights2( LEN_LIST_2 ); unsigned i; double rms; rms = pmean( VAL_LIST_1, LEN_LIST_1, 2.0 ); for( i = 0; i < LEN_LIST_1; ++i ) weights1[i] = VAL_LIST_1[i] / ( LEN_LIST_1 * rms ); check_average_and_weights( VAL_LIST_1, LEN_LIST_1, QualityMetric::RMS, arrptr( weights1 ) ); rms = pmean( VAL_LIST_2, LEN_LIST_2, 2.0 ); for( i = 0; i < LEN_LIST_2; ++i ) weights2[i] = VAL_LIST_2[i] / ( LEN_LIST_2 * rms ); check_average_and_weights( VAL_LIST_2, LEN_LIST_2, QualityMetric::RMS, arrptr( weights2 ) ); }
Definition at line 671 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::STANDARD_DEVIATION.
{ check_average_and_weights_fails( QualityMetric::STANDARD_DEVIATION ); }
Definition at line 641 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), and MBMesquite::QualityMetric::SUM.
{ std::vector< double > weights1( LEN_LIST_1, 1.0 ), weights2( LEN_LIST_2, 1.0 ); check_average_and_weights( VAL_LIST_1, LEN_LIST_1, QualityMetric::SUM, arrptr( weights1 ) ); check_average_and_weights( VAL_LIST_2, LEN_LIST_2, QualityMetric::SUM, arrptr( weights2 ) ); }
Definition at line 686 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM_OF_RATIOS_SQUARED.
{ check_average_and_weights_fails( QualityMetric::SUM_OF_RATIOS_SQUARED ); }
Definition at line 648 of file AveragingQMTest.cpp.
References MBMesquite::arrptr(), and MBMesquite::QualityMetric::SUM_SQUARED.
{ std::vector< double > weights1( LEN_LIST_1 ), weights2( LEN_LIST_2 ); unsigned i; for( i = 0; i < LEN_LIST_1; ++i ) weights1[i] = 2 * VAL_LIST_1[i]; check_average_and_weights( VAL_LIST_1, LEN_LIST_1, QualityMetric::SUM_SQUARED, arrptr( weights1 ) ); for( i = 0; i < LEN_LIST_2; ++i ) weights2[i] = 2 * VAL_LIST_2[i]; check_average_and_weights( VAL_LIST_2, LEN_LIST_2, QualityMetric::SUM_SQUARED, arrptr( weights2 ) ); }
Definition at line 752 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::GEOMETRIC.
{ check_average_gradients( QualityMetric::GEOMETRIC ); }
Definition at line 747 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::HARMONIC.
{ check_average_gradients( QualityMetric::HARMONIC ); }
Definition at line 732 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::HMS.
{ check_average_gradients( QualityMetric::HMS ); }
Definition at line 722 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::LINEAR.
{ check_average_gradients( QualityMetric::LINEAR ); }
Definition at line 791 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAX_MINUS_MIN.
{ check_average_gradient_fails( QualityMetric::MAX_MINUS_MIN ); }
Definition at line 786 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAX_OVER_MIN.
{ check_average_gradient_fails( QualityMetric::MAX_OVER_MIN ); }
Definition at line 742 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAXIMUM.
{ check_average_gradients( QualityMetric::MAXIMUM ); }
Definition at line 737 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MINIMUM.
{ check_average_gradients( QualityMetric::MINIMUM ); }
Definition at line 727 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::RMS.
{ check_average_gradients( QualityMetric::RMS ); }
Definition at line 781 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::STANDARD_DEVIATION.
{ check_average_gradient_fails( QualityMetric::STANDARD_DEVIATION ); }
Definition at line 757 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM.
{ check_average_gradients( QualityMetric::SUM ); }
Definition at line 796 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM_OF_RATIOS_SQUARED.
{ check_average_gradient_fails( QualityMetric::SUM_OF_RATIOS_SQUARED ); }
Definition at line 762 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM_SQUARED.
{ check_average_gradients( QualityMetric::SUM_SQUARED ); }
Definition at line 978 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::GEOMETRIC.
{ check_hessian_diagonal_fails( QualityMetric::GEOMETRIC ); }
Definition at line 973 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::HARMONIC.
{ check_pmean_hessian_diagonals( QualityMetric::HARMONIC, -1, -1, true ); }
Definition at line 958 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::HMS.
{ check_pmean_hessian_diagonals( QualityMetric::HMS, -2, -0.5, true ); }
Definition at line 948 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::LINEAR.
{ check_pmean_hessian_diagonals( QualityMetric::LINEAR, 1, 1, true ); }
Definition at line 1003 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAX_MINUS_MIN.
{ check_hessian_diagonal_fails( QualityMetric::MAX_MINUS_MIN ); }
Definition at line 998 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAX_OVER_MIN.
{ check_hessian_diagonal_fails( QualityMetric::MAX_OVER_MIN ); }
Definition at line 968 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAXIMUM.
{ check_hessian_diagonal_fails( QualityMetric::MAXIMUM ); }
Definition at line 963 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MINIMUM.
{ check_hessian_diagonal_fails( QualityMetric::MINIMUM ); }
Definition at line 953 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::RMS.
{ check_pmean_hessian_diagonals( QualityMetric::RMS, 2, 0.5, true ); }
Definition at line 993 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::STANDARD_DEVIATION.
{ check_hessian_diagonal_fails( QualityMetric::STANDARD_DEVIATION ); }
Definition at line 983 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM.
{ check_pmean_hessian_diagonals( QualityMetric::SUM, 1, 1, false ); }
Definition at line 1008 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM_OF_RATIOS_SQUARED.
{ check_hessian_diagonal_fails( QualityMetric::SUM_OF_RATIOS_SQUARED ); }
Definition at line 988 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM_SQUARED.
{ check_pmean_hessian_diagonals( QualityMetric::SUM_SQUARED, 2, 1, false ); }
Definition at line 1108 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::GEOMETRIC.
{ check_hessian_fails( QualityMetric::GEOMETRIC ); }
Definition at line 1103 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::HARMONIC.
{ check_pmean_hessian( QualityMetric::HARMONIC, -1, -1, true ); }
Definition at line 1088 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::HMS.
{ check_pmean_hessian( QualityMetric::HMS, -2, -0.5, true ); }
Definition at line 1078 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::LINEAR.
{ check_pmean_hessian( QualityMetric::LINEAR, 1, 1, true ); }
Definition at line 1133 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAX_MINUS_MIN.
{ check_hessian_fails( QualityMetric::MAX_MINUS_MIN ); }
Definition at line 1128 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAX_OVER_MIN.
{ check_hessian_fails( QualityMetric::MAX_OVER_MIN ); }
Definition at line 1098 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MAXIMUM.
{ check_hessian_fails( QualityMetric::MAXIMUM ); }
Definition at line 1093 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::MINIMUM.
{ check_hessian_fails( QualityMetric::MINIMUM ); }
Definition at line 1083 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::RMS.
{ check_pmean_hessian( QualityMetric::RMS, 2, 0.5, true ); }
Definition at line 1123 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::STANDARD_DEVIATION.
{ check_hessian_fails( QualityMetric::STANDARD_DEVIATION ); }
Definition at line 1113 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM.
{ check_pmean_hessian( QualityMetric::SUM, 1, 1, false ); }
Definition at line 1138 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM_OF_RATIOS_SQUARED.
{ check_hessian_fails( QualityMetric::SUM_OF_RATIOS_SQUARED ); }
Definition at line 1118 of file AveragingQMTest.cpp.
References MBMesquite::QualityMetric::SUM_SQUARED.
{ check_pmean_hessian( QualityMetric::SUM_SQUARED, 2, 1, false ); }
Definition at line 373 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, MBMesquite::QualityMetric::GEOMETRIC, and geometric_mean().
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::GEOMETRIC ); double exp, act; exp = geometric_mean( VAL_LIST_1, LEN_LIST_1 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = geometric_mean( VAL_LIST_2, LEN_LIST_2 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 356 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, MBMesquite::QualityMetric::HARMONIC, and pmean().
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::HARMONIC ); double exp, act; exp = pmean( VAL_LIST_1, LEN_LIST_1, -1.0 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = pmean( VAL_LIST_2, LEN_LIST_2, -1.0 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 305 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, MBMesquite::QualityMetric::HMS, and pmean().
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::HMS ); double exp, act; exp = pmean( VAL_LIST_1, LEN_LIST_1, -2.0 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = pmean( VAL_LIST_2, LEN_LIST_2, -2.0 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 271 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, MBMesquite::QualityMetric::LINEAR, and pmean().
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::LINEAR ); double exp, act; exp = pmean( VAL_LIST_1, LEN_LIST_1, 1 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = pmean( VAL_LIST_2, LEN_LIST_2, 1 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 465 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, list_max(), list_min(), and MBMesquite::QualityMetric::MAX_MINUS_MIN.
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::MAX_MINUS_MIN ); double exp, act; exp = list_max( VAL_LIST_1, LEN_LIST_1 ) - list_min( VAL_LIST_1, LEN_LIST_1 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = list_max( VAL_LIST_2, LEN_LIST_2 ) - list_min( VAL_LIST_2, LEN_LIST_2 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 448 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, list_max(), list_min(), and MBMesquite::QualityMetric::MAX_OVER_MIN.
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::MAX_OVER_MIN ); double exp, act; exp = list_max( VAL_LIST_1, LEN_LIST_1 ) / list_min( VAL_LIST_1, LEN_LIST_1 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = list_max( VAL_LIST_2, LEN_LIST_2 ) / list_min( VAL_LIST_2, LEN_LIST_2 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 339 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, list_max(), and MBMesquite::QualityMetric::MAXIMUM.
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::MAXIMUM ); double exp, act; exp = list_max( VAL_LIST_1, LEN_LIST_1 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = list_max( VAL_LIST_2, LEN_LIST_2 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 322 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, list_min(), and MBMesquite::QualityMetric::MINIMUM.
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::MINIMUM ); double exp, act; exp = list_min( VAL_LIST_1, LEN_LIST_1 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = list_min( VAL_LIST_2, LEN_LIST_2 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 288 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, pmean(), and MBMesquite::QualityMetric::RMS.
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::RMS ); double exp, act; exp = pmean( VAL_LIST_1, LEN_LIST_1, 2 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = pmean( VAL_LIST_2, LEN_LIST_2, 2 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 427 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, pmean(), MBMesquite::QualityMetric::STANDARD_DEVIATION, and sum_sqr().
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::STANDARD_DEVIATION ); double exp, act, tmp; tmp = pmean( VAL_LIST_1, LEN_LIST_1, 1.0 ); exp = sum_sqr( VAL_LIST_1, LEN_LIST_1 ); exp = exp / LEN_LIST_1 - tmp * tmp; act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); tmp = pmean( VAL_LIST_2, LEN_LIST_2, 1.0 ); exp = sum_sqr( VAL_LIST_2, LEN_LIST_2 ); exp = exp / LEN_LIST_2 - tmp * tmp; act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 390 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, and MBMesquite::QualityMetric::SUM.
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::SUM ); double exp, act; unsigned i; for( exp = 0.0, i = 0; i < LEN_LIST_1; exp += VAL_LIST_1[i++] ) ; act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); for( exp = 0.0, i = 0; i < LEN_LIST_2; exp += VAL_LIST_2[i++] ) ; act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 482 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, sum_of_ratios_squared(), and MBMesquite::QualityMetric::SUM_OF_RATIOS_SQUARED.
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::SUM_OF_RATIOS_SQUARED ); double exp, act; exp = sum_of_ratios_squared( VAL_LIST_1, LEN_LIST_1 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = sum_of_ratios_squared( VAL_LIST_2, LEN_LIST_2 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
Definition at line 410 of file AveragingQMTest.cpp.
References ASSERT_NO_ERROR, MBMesquite::AveragingQM::average_metrics(), CPPUNIT_ASSERT_DOUBLES_EQUAL, sum_sqr(), and MBMesquite::QualityMetric::SUM_SQUARED.
{ MsqPrintError err( std::cout ); AveragingQM aqm( QualityMetric::SUM_SQUARED ); double exp, act; exp = sum_sqr( VAL_LIST_1, LEN_LIST_1 ); act = aqm.average_metrics( VAL_LIST_1, LEN_LIST_1, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); exp = sum_sqr( VAL_LIST_2, LEN_LIST_2 ); act = aqm.average_metrics( VAL_LIST_2, LEN_LIST_2, err ); ASSERT_NO_ERROR( err ); CPPUNIT_ASSERT_DOUBLES_EQUAL( exp, act, 1e-8 ); }
const unsigned AveragingQMTest::LEN_LIST_1 = sizeof( VAL_LIST_1 ) / sizeof( double ) [static, private] |
Definition at line 114 of file AveragingQMTest.cpp.
const unsigned AveragingQMTest::LEN_LIST_2 = sizeof( VAL_LIST_2 ) / sizeof( double ) [static, private] |
Definition at line 115 of file AveragingQMTest.cpp.
const double AveragingQMTest::VAL_LIST_1 = { 1, 2, -1, -2, 5 } [static, private] |
Definition at line 112 of file AveragingQMTest.cpp.
const double AveragingQMTest::VAL_LIST_2 [static, private] |
{ M_PI, std::exp( 1.0 ), -20, 8, M_PI / 4, std::log( 2.0 ), std::sqrt( 2.0 ), -1 }
Definition at line 113 of file AveragingQMTest.cpp.