Commit 9e6fe9a8 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Updated shared pointers in UmfpackWrapper

parent 1ac7501c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -47,8 +47,8 @@ public:
    typedef typename Matrix :: DeviceType DeviceType;
    typedef Matrix MatrixType;
    typedef Preconditioner PreconditionerType;
    typedef SharedPointer< const MatrixType, DeviceType, true > MatrixPointer;
    typedef SharedPointer< const PreconditionerType, DeviceType, true > PreconditionerPointer;
    typedef SharedPointer< const MatrixType, DeviceType > MatrixPointer;
    typedef SharedPointer< const PreconditionerType, DeviceType > PreconditionerPointer;

    UmfpackWrapper()
    {
@@ -99,8 +99,8 @@ public:
    typedef Devices::Host DeviceType;
    typedef Matrices::CSR< double, Devices::Host, int > MatrixType;
    typedef Preconditioner PreconditionerType;
    typedef SharedPointer< const MatrixType, DeviceType, true > MatrixPointer;
    typedef SharedPointer< const PreconditionerType, DeviceType, true > PreconditionerPointer;
    typedef SharedPointer< const MatrixType, DeviceType > MatrixPointer;
    typedef SharedPointer< const PreconditionerType, DeviceType > PreconditionerPointer;

    UmfpackWrapper();