File: test_solver_complex.cpp

package info (click to toggle)
amgcl 1.4.4-1
  • links: PTS, VCS
  • area: contrib
  • in suites: sid
  • size: 5,676 kB
  • sloc: cpp: 34,043; python: 747; pascal: 258; f90: 196; makefile: 20
file content (16 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#define BOOST_TEST_MODULE TestSolvers
#include <boost/test/unit_test.hpp>

#include <amgcl/value_type/complex.hpp>
#include <amgcl/backend/builtin.hpp>

#include "test_solver.hpp"

BOOST_AUTO_TEST_SUITE( test_solvers )

BOOST_AUTO_TEST_CASE(test_builtin_complex_backend)
{
    test_backend< amgcl::backend::builtin< std::complex<double> > >();
}

BOOST_AUTO_TEST_SUITE_END()