Class documentation of Concepts

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