Class documentation of Concepts

Loading...
Searching...
No Matches
umfpackTest.hh
Go to the documentation of this file.
1
7#ifndef umfpackTest_hh
8#define umfpackTest_hh
9
10#include "basics/testcase.hh"
11#include "space/space.hh"
12
13namespace test {
14
19 class UmfpackTest : public TestCase {
20 public:
21 UmfpackTest() : spc(5) {}
22 virtual ~UmfpackTest() {}
23 virtual void run();
24
26
27
28 void testinit();
30 void testSPD();
32 void testUNSYMM();
34 private:
36 };
37
38} // namespace test
39
40#endif // umfpackTest_hh
virtual void run()
Runs the tests. Must be overwritten by the specialization.
void testinit()
Tests initialization of the solver.
void testSPD()
Tests symmetric, positive definite solver.
void testUNSYMM()
Tests unsymmetric solver.