#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.
Variables |
ostream * | os_ = 0 |
Function Documentation
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);
ublas::vector<double>
y(2);
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;
}
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);
ublas::vector< complex<double> >
y(2);
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;
}
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);
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;
}
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);
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;
}
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);
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;
}
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);
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;
}
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().
{
try
{
if (argc>1 && !strcmp(argv[1],
"-v"))
os_ = &cout;
if (
os_) *
os_ <<
"LinearSolverTest\n";
}
{
}
catch (...)
{
}
}
Variable Documentation