ProteoWizard
Functions | Variables
LinearSolverTest.cpp File Reference
#include "LinearSolver.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include <boost/numeric/ublas/matrix_sparse.hpp>
#include <boost/numeric/ublas/banded.hpp>
#include "pwiz/utility/misc/Std.hpp"
#include <cstring>

Go to the source code of this file.

Functions

void testDouble ()
void testComplex ()
void testDoubleQR ()
void testSparse ()
void testBanded ()
void testBandedComplex ()
int main (int argc, char *argv[])

Variables

ostream * os_ = 0

Function Documentation

void testDouble ( )

Definition at line 42 of file LinearSolverTest.cpp.

References A, os_, unit_assert, x, and y.

{
if (os_) *os_ << "testDouble()\n";
LinearSolver<> solver;
ublas::matrix<double> A(2,2);
A(0,0) = 1; A(0,1) = 2;
A(1,0) = 3; A(1,1) = 4;
ublas::vector<double> y(2);
y(0) = 5;
y(1) = 11;
ublas::vector<double> x = solver.solve(A, y);
if (os_) *os_ << "A: " << A << endl;
if (os_) *os_ << "y: " << y << endl;
if (os_) *os_ << "x: " << x << endl;
unit_assert(x(0) == 1.);
unit_assert(x(1) == 2.);
}
void testComplex ( )

Definition at line 67 of file LinearSolverTest.cpp.

References A, os_, unit_assert, x, and y.

Referenced by main().

{
if (os_) *os_ << "testComplex()\n";
LinearSolver<> solver;
ublas::matrix< complex<double> > A(2,2);
A(0,0) = 1; A(0,1) = 2;
A(1,0) = 3; A(1,1) = 4;
ublas::vector< complex<double> > y(2);
y(0) = 5;
y(1) = 11;
ublas::vector< complex<double> > x = solver.solve(A, y);
if (os_) *os_ << "A: " << A << endl;
if (os_) *os_ << "y: " << y << endl;
if (os_) *os_ << "x: " << x << endl;
unit_assert(x(0) == 1.);
unit_assert(x(1) == 2.);
}
void testDoubleQR ( )

Definition at line 91 of file LinearSolverTest.cpp.

References A, e(), os_, pwiz::math::LinearSolver< LinearSolverType_QR >::solve(), unit_assert_equal, x, and y.

{
if (os_) *os_ << "testDoubleQR()\n";
ublas::matrix<double> A(2,2);
A(0,0) = 1.; A(0,1) = 2.;
A(1,0) = 3.; A(1,1) = 4.;
ublas::vector<double> y(2);
y(0) = 5.;
y(1) = 11.;
ublas::vector<double> x = solver.solve(A, y);
if (os_) *os_ << "A: " << A << endl;
if (os_) *os_ << "y: " << y << endl;
if (os_) *os_ << "x: " << x << endl;
if (os_) *os_ << x(0) << " - 1. = " << x(0) - 1. << endl;
unit_assert_equal(x(0), 1., 1e-14);
unit_assert_equal(x(1), 2., 1e-14);
}
void testSparse ( )

Definition at line 144 of file LinearSolverTest.cpp.

References A, e(), os_, unit_assert_equal, x, and y.

Referenced by main().

{
if (os_) *os_ << "testSparse()\n";
LinearSolver<> solver;
ublas::mapped_matrix<double> A(2,2,4);
A(0,0) = 1.; A(0,1) = 2.;
A(1,0) = 3.; A(1,1) = 4.;
ublas::vector<double> y(2);
y(0) = 5.;
y(1) = 11.;
ublas::vector<double> x = solver.solve(A, y);
if (os_) *os_ << "A: " << A << endl;
if (os_) *os_ << "y: " << y << endl;
if (os_) *os_ << "x: " << x << endl;
unit_assert_equal(x(0), 1., 1e-14);
unit_assert_equal(x(1), 2., 1e-14);
}
void testBanded ( )

Definition at line 196 of file LinearSolverTest.cpp.

References A, e(), os_, unit_assert_equal, x, and y.

Referenced by main().

{
if (os_) *os_ << "testBanded()\n";
LinearSolver<> solver;
ublas::banded_matrix<double> A(2,2,1,1);
A(0,0) = 1.; A(0,1) = 2.;
A(1,0) = 3.; A(1,1) = 4.;
ublas::vector<double> y(2);
y(0) = 5.;
y(1) = 11.;
ublas::vector<double> x = solver.solve(A, y);
if (os_) *os_ << "A: " << A << endl;
if (os_) *os_ << "y: " << y << endl;
if (os_) *os_ << "x: " << x << endl;
unit_assert_equal(x(0), 1., 1e-14);
unit_assert_equal(x(1), 2., 1e-14);
}
void testBandedComplex ( )

Definition at line 221 of file LinearSolverTest.cpp.

References A, e(), norm(), os_, unit_assert, x, and y.

{
if (os_) *os_ << "testBandedComplex()\n";
LinearSolver<> solver;
ublas::banded_matrix< complex<double> > A(2,2,1,1);
A(0,0) = 1.; A(0,1) = 2.;
A(1,0) = 3.; A(1,1) = 4.;
ublas::vector< complex<double> > y(2);
y(0) = 5.;
y(1) = 11.;
ublas::vector< complex<double> > x = solver.solve(A, y);
if (os_) *os_ << "A: " << A << endl;
if (os_) *os_ << "y: " << y << endl;
if (os_) *os_ << "x: " << x << endl;
unit_assert(norm(x(0)-1.) < 1e-14);
unit_assert(norm(x(1)-2.) < 1e-14);
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 246 of file LinearSolverTest.cpp.

References e(), os_, TEST_EPILOG, TEST_FAILED, TEST_PROLOG, testBanded(), testComplex(), testDouble(), testDoubleQR(), and testSparse().

{
TEST_PROLOG(argc, argv)
try
{
if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
if (os_) *os_ << "LinearSolverTest\n";
//testComplexQR();
//testSparseComplex(); // lu_factorize doesn't like mapped_matrix<complex>
//testBandedComplex(); // FIXME: GCC 4.2 doesn't like this test with link=shared
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 39 of file LinearSolverTest.cpp.