[petsc-users] Memory leak when combining PETSc-based vectors and boost::odeint

Roland Richter roland.richter at ntnu.no
Fri Apr 1 08:56:31 CDT 2022


Hei,

It defines the namespace used for armadillo-matrices. A valgrind-log is
attached for the case with removed destructor (can't run valgrind if my
program fails with a segfault).

Regards,

Roland

Am 01.04.22 um 15:23 schrieb Barry Smith:
>
>   I recommend first running with valgrind. 
>
>   I tried to build your code but got compile errors from arma:: being
> unknown. Where does it come from? Is it only in a super new version of
> Boost?
>
>
>
>> On Apr 1, 2022, at 6:50 AM, Roland Richter <roland.richter at ntnu.no>
>> wrote:
>>
>> I re-run my code with a debug version of PETSc, resulting in
>>
>> [0]PETSC ERROR: --------------------- Error Message
>> --------------------------------------------------------------
>> [0]PETSC ERROR: Corrupt argument:
>> https://petsc.org/release/faq/#valgrind
>> [0]PETSC ERROR: Object already free: Parameter # 1
>> [0]PETSC ERROR: See https://petsc.org/release/faq/ for trouble shooting.
>> [0]PETSC ERROR: Petsc Development GIT revision: v3.17.0-8-gf6d6129e50
>>  GIT Date: 2022-03-31 18:10:33 +0000
>> [0]PETSC ERROR: #1 VecGetSize() at
>> /home/roland/Downloads/git-files/petsc/src/vec/vec/interface/vector.c:670
>> 0       64
>> [0]PETSC ERROR: #2 VecDestroy() at
>> /home/roland/Downloads/git-files/petsc/src/vec/vec/interface/vector.c:375
>> 0       64
>> [0]PETSC ERROR: #3 VecGetArray() at
>> /home/roland/Downloads/git-files/petsc/src/vec/vec/interface/rvector.c:1780
>>
>> I do not understand why it tries to access the vector, even though it
>> has been set to PETSC_NULL in the previous free-call.
>>
>> Regards,
>>
>> Roland
>>
>> Am 31.03.22 um 15:50 schrieb Matthew Knepley:
>>> On Thu, Mar 31, 2022 at 9:47 AM Roland Richter
>>> <roland.richter at ntnu.no> wrote:
>>>
>>>     The backtrace is
>>>
>>>     #0  0x00007fffeec4ba97in VecGetSize_Seq() from
>>>     /opt/petsc/lib/libpetsc.so.3.016
>>>     #1  0x00007fffeec78f5ain VecGetSize() from
>>>     /opt/petsc/lib/libpetsc.so.3.016
>>>     #2  0x0000000000410b73in
>>>     test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long,
>>>     unsigned long, arma::Col<std::complex<doubl
>>>     e> > const&, arma::Col<std::complex<double> >&, double, double,
>>>     double) [clone .constprop.0]()
>>>     #3  0x0000000000414384in test_RK4_solvers_clean(unsigned long,
>>>     unsigned long, unsigned long, bool) [clone .constprop.0]()
>>>     #4  0x0000000000405c6cin main()
>>>
>>> It looks like you are passing an invalid vector. If you compiled in
>>> debug mode, it would tell you. I would run
>>> in debug until my code was running like I expect, then switch to
>>> optimized. You can do that by using two
>>> different PETSC_ARCH configures, and switch at runtime with that
>>> variable.
>>>
>>>   Thanks,
>>>
>>>     Matt 
>>>
>>>     Regards,
>>>
>>>     Roland Richter
>>>
>>>     Am 31.03.22 um 15:35 schrieb Matthew Knepley:
>>>>     On Thu, Mar 31, 2022 at 9:01 AM Roland Richter
>>>>     <roland.richter at ntnu.no> wrote:
>>>>
>>>>         Hei,
>>>>
>>>>         Thanks for the idea! I added a simple std::cout for both
>>>>         constructor and destructor, and found out that my
>>>>         destructor is called multiple times, while the constructor
>>>>         is called only once. This could explain the error (double
>>>>         free), but I do not know why segfault is thrown even though
>>>>         I explicitly check if the vector has been used. Are there
>>>>         explanations for that?
>>>>
>>>>     Run with -start_in_debugger and get the stack trace when it
>>>>     faults. Right now, I have no idea where it is faulting.
>>>>
>>>>       Thanks,
>>>>
>>>>         Matt
>>>>      
>>>>
>>>>         Regards,
>>>>
>>>>         Roland Richter
>>>>
>>>>         Am 31.03.22 um 12:14 schrieb Matthew Knepley:
>>>>>         On Thu, Mar 31, 2022 at 5:58 AM Roland Richter
>>>>>         <roland.richter at ntnu.no> wrote:
>>>>>
>>>>>             Hei,
>>>>>
>>>>>             For a project I wanted to combine boost::odeint for
>>>>>             timestepping and PETSc-based vectors and matrices for
>>>>>             calculating the right hand side. As comparison for
>>>>>             both timing and correctness I set up an
>>>>>             armadillo-based right hand side (with the
>>>>>             main-function being in *main.cpp*, and the test code
>>>>>             in *test_timestepping_clean.cpp*)
>>>>>
>>>>>             In theory, the code works fine, but I have some issues
>>>>>             with cleaning up afterwards in my struct
>>>>>             /Petsc_RHS_state_clean/. My initial intention was to
>>>>>             set up all involved matrices and vectors within the
>>>>>             constructor, and free the memory in the destructor. To
>>>>>             avoid freeing vectors I have not used I initially set
>>>>>             them to /PETSC_NULL/, and check if this value has been
>>>>>             changed before calling /VecDestroy()./
>>>>>
>>>>>         You do not need to check. Destroy() functions already
>>>>>         check for NULL.
>>>>>
>>>>>             However, when doing that I get the following error:
>>>>>
>>>>>             [0]PETSC ERROR:
>>>>>             ------------------------------------------------------------------------
>>>>>
>>>>>             [0]PETSC ERROR: Caught signal number 11 SEGV:
>>>>>             Segmentation Violation, probably memory access out of
>>>>>             range
>>>>>             [0]PETSC ERROR: Try option -start_in_debugger or
>>>>>             -on_error_attach_debugger
>>>>>             [0]PETSC ERROR: or see
>>>>>             https://petsc.org/release/faq/#valgrind
>>>>>             [0]PETSC ERROR: or try http://valgrind.org on
>>>>>             GNU/linux and Apple Mac OS X to find memory corruption
>>>>>             errors
>>>>>             [0]PETSC ERROR: configure using --with-debugging=yes,
>>>>>             recompile, link, and run  
>>>>>             [0]PETSC ERROR: to get more information on the crash.
>>>>>             [0]PETSC ERROR: --------------------- Error Message
>>>>>             --------------------------------------------------------------
>>>>>
>>>>>             If I comment out that code in
>>>>>             ~Petsc_RHS_state_clean(), the program runs, but will
>>>>>             use ~17 GByte of RAM during runtime. As the memory is
>>>>>             not used immediately in full, but rather increases
>>>>>             during running, I assume a memory leak somewhere.
>>>>>             Where does it come from, and how can I avoid it?
>>>>>
>>>>>         It must be that your constructor is called multiple times
>>>>>         without calling your destructor. I cannot understand this
>>>>>         code in order
>>>>>         to see where that happens, but you should just be able to
>>>>>         run in the debugger and put a break point at the creation and
>>>>>         destruction calls.
>>>>>
>>>>>           Thanks,
>>>>>
>>>>>               Matt
>>>>>
>>>>>             Thanks!
>>>>>
>>>>>             Regards,
>>>>>
>>>>>             Roland Richter
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>         -- 
>>>>>         What most experimenters take for granted before they begin
>>>>>         their experiments is infinitely more interesting than any
>>>>>         results to which their experiments lead.
>>>>>         -- Norbert Wiener
>>>>>
>>>>>         https://www.cse.buffalo.edu/~knepley/
>>>>>         <http://www.cse.buffalo.edu/~knepley/>
>>>>
>>>>
>>>>
>>>>     -- 
>>>>     What most experimenters take for granted before they begin
>>>>     their experiments is infinitely more interesting than any
>>>>     results to which their experiments lead.
>>>>     -- Norbert Wiener
>>>>
>>>>     https://www.cse.buffalo.edu/~knepley/
>>>>     <http://www.cse.buffalo.edu/~knepley/>
>>>
>>>
>>>
>>> -- 
>>> What most experimenters take for granted before they begin their
>>> experiments is infinitely more interesting than any results to which
>>> their experiments lead.
>>> -- Norbert Wiener
>>>
>>> https://www.cse.buffalo.edu/~knepley/
>>> <http://www.cse.buffalo.edu/~knepley/>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20220401/d40fd681/attachment-0001.html>
-------------- next part --------------
==14353== Memcheck, a memory error detector
==14353== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==14353== Using Valgrind-3.18.1-42b08ed5bd-20211015 and LibVEX; rerun with -h for copyright info
==14353== Command: bin/armadillo_with_PETSc
==14353== Parent PID: 2653
==14353== 
--14353-- 
--14353-- Valgrind options:
--14353--    --leak-check=full
--14353--    --show-leak-kinds=all
--14353--    --track-origins=yes
--14353--    --verbose
--14353--    --log-file=out_file.txt
--14353-- Contents of /proc/version:
--14353--   Linux version 5.16.15-1-default (geeko at buildhost) (gcc (SUSE Linux) 11.2.1 20220103 [revision d4a1d3c4b377f1d4acb34fe1b55b5088a3f293f6], GNU ld (GNU Binutils; openSUSE Tumbleweed) 2.38.20220304-2) #1 SMP PREEMPT Wed Mar 16 23:33:05 UTC 2022 (d8f0e40)
--14353-- 
--14353-- Arch and hwcaps: AMD64, LittleEndian, amd64-cx16-lzcnt-rdtscp-sse3-ssse3-avx-avx2-bmi-f16c-rdrand-rdseed
--14353-- Page sizes: currently 4096, max supported 4096
--14353-- Valgrind library directory: /usr/libexec/valgrind
--14353-- Reading syms from /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc
--14353-- Reading syms from /usr/lib64/ld-linux-x86-64.so.2
--14353-- Reading syms from /usr/libexec/valgrind/memcheck-amd64-linux
--14353--    object doesn't have a symbol table
--14353--    object doesn't have a dynamic symbol table
--14353-- Scheduler: using generic scheduler lock implementation.
--14353-- Reading suppressions file: /usr/libexec/valgrind/default.supp
==14353== embedded gdbserver: reading from /tmp/vgdb-pipe-from-vgdb-to-14353-by-roland-on-linux-zm6o
==14353== embedded gdbserver: writing to   /tmp/vgdb-pipe-to-vgdb-from-14353-by-roland-on-linux-zm6o
==14353== embedded gdbserver: shared mem   /tmp/vgdb-pipe-shared-mem-vgdb-14353-by-roland-on-linux-zm6o
==14353== 
==14353== TO CONTROL THIS PROCESS USING vgdb (which you probably
==14353== don't want to do, unless you know exactly what you're doing,
==14353== or are doing some strange experiment):
==14353==   /usr/libexec/valgrind/../../bin/vgdb --pid=14353 ...command...
==14353== 
==14353== TO DEBUG THIS PROCESS USING GDB: start GDB like this
==14353==   /path/to/gdb bin/armadillo_with_PETSc
==14353== and then give GDB the following command
==14353==   target remote | /usr/libexec/valgrind/../../bin/vgdb --pid=14353
==14353== --pid is optional if only one valgrind process is running
==14353== 
--14353-- REDIR: 0x402ae70 (ld-linux-x86-64.so.2:strlen) redirected to 0x581fd35b (???)
--14353-- REDIR: 0x402ac40 (ld-linux-x86-64.so.2:index) redirected to 0x581fd375 (???)
--14353-- Reading syms from /usr/libexec/valgrind/vgpreload_core-amd64-linux.so
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so
--14353--    object doesn't have a symbol table
==14353== WARNING: new redirection conflicts with existing -- ignoring it
--14353--     old: 0x0402ae70 (strlen              ) R-> (0000.0) 0x581fd35b ???
--14353--     new: 0x0402ae70 (strlen              ) R-> (2007.0) 0x04850920 strlen
--14353-- REDIR: 0x4027650 (ld-linux-x86-64.so.2:strcmp) redirected to 0x4851780 (strcmp)
--14353-- REDIR: 0x402b3d0 (ld-linux-x86-64.so.2:mempcpy) redirected to 0x48551f0 (mempcpy)
--14353-- Reading syms from /usr/lib64/libgsl.so.25.0.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libgslcblas.so.0.0.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libgfortran.so.5.0.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /opt/intel/oneapi/mkl/2022.0.2/lib/intel64/libmkl_intel_lp64.so.2
--14353-- Reading syms from /opt/intel/oneapi/mkl/2022.0.2/lib/intel64/libmkl_gnu_thread.so.2
--14353-- Reading syms from /opt/intel/oneapi/mkl/2022.0.2/lib/intel64/libmkl_core.so.2
--14353-- Reading syms from /usr/lib64/libgomp.so.1.0.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /opt/boost/lib/libboost_filesystem.so.1.78.0
--14353-- Reading syms from /opt/boost/lib/libboost_mpi.so.1.78.0
--14353-- Reading syms from /opt/boost/lib/libboost_program_options.so.1.78.0
--14353-- Reading syms from /opt/boost/lib/libboost_serialization.so.1.78.0
--14353-- Reading syms from /opt/fftw3/lib64/libfftw3.so.3.6.10
--14353-- Reading syms from /opt/fftw3/lib64/libfftw3_mpi.so.3.6.10
--14353-- Reading syms from /opt/petsc/lib/libpetsc.so.3.016.3
--14353-- Reading syms from /opt/boost/lib/libboost_atomic.so.1.78.0
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/lib/libmpicxx.so.12.0.0
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/lib/libmpifort.so.12.0.0
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/lib/release/libmpi.so.12.0.0
--14353--   Considering /opt/intel/oneapi/mpi/2021.5.1/lib/release/libmpi.dbg ..
--14353--   .. CRC is valid
--14353-- Reading syms from /usr/lib64/libstdc++.so.6.0.29
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libm.so.6
--14353-- Reading syms from /usr/lib64/libgcc_s.so.1
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libc.so.6
==14353== WARNING: new redirection conflicts with existing -- ignoring it
--14353--     old: 0x10303e7e (memalign            ) R-> (1011.0) 0x0484fbe0 memalign
--14353--     new: 0x10303e7e (memalign            ) R-> (1017.0) 0x0484fbb0 aligned_alloc
==14353== WARNING: new redirection conflicts with existing -- ignoring it
--14353--     old: 0x10303e7e (memalign            ) R-> (1011.0) 0x0484fbe0 memalign
--14353--     new: 0x10303e7e (memalign            ) R-> (1017.0) 0x0484fb80 aligned_alloc
--14353-- Reading syms from /usr/lib64/libquadmath.so.0.0.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libdl.so.2
--14353-- Reading syms from /usr/lib64/libpthread.so.0
--14353-- Reading syms from /opt/petsc/lib/libHYPRE-2.23.0.so
--14353-- Reading syms from /opt/petsc/lib/libspqr.so.2.0.9
--14353-- Reading syms from /opt/petsc/lib/libumfpack.so.5.7.9
--14353-- Reading syms from /opt/petsc/lib/libklu.so.1.3.8
--14353-- Reading syms from /opt/petsc/lib/libcholmod.so.3.0.14
--14353-- Reading syms from /opt/petsc/lib/libbtf.so.1.2.6
--14353-- Reading syms from /opt/petsc/lib/libccolamd.so.2.9.6
--14353-- Reading syms from /opt/petsc/lib/libcolamd.so.2.9.6
--14353-- Reading syms from /opt/petsc/lib/libcamd.so.2.4.6
--14353-- Reading syms from /opt/petsc/lib/libamd.so.2.4.6
--14353-- Reading syms from /opt/petsc/lib/libsuitesparseconfig.so.5.10.1
--14353-- Reading syms from /opt/intel/oneapi/mkl/2022.0.2/lib/intel64/libmkl_scalapack_lp64.so.2
--14353-- Reading syms from /opt/intel/oneapi/mkl/2022.0.2/lib/intel64/libmkl_blacs_intelmpi_lp64.so.2
--14353-- Reading syms from /opt/petsc/lib/libsuperlu.so.5.3.0
--14353-- Reading syms from /opt/petsc/lib/libsuperlu_dist.so.7.2.0
--14353-- Reading syms from /opt/petsc/lib/libEl.so.87
--14353-- Reading syms from /opt/petsc/lib/libElSuiteSparse.so
--14353-- Reading syms from /opt/petsc/lib/libpmrrr.so.87
--14353-- Reading syms from /opt/petsc/lib/libp4est-2.0.7-1727.so
--14353-- Reading syms from /opt/petsc/lib/libsc-2.0.so
--14353-- Reading syms from /opt/intel/oneapi/mkl/2022.0.2/lib/intel64/libmkl_intel_thread.so.2
--14353-- Reading syms from /opt/intel/oneapi/compiler/2022.0.2/linux/compiler/lib/intel64_lin/libiomp5.so
--14353--   Considering /opt/intel/oneapi/compiler/2022.0.2/linux/compiler/lib/intel64_lin/libiomp5.dbg ..
--14353--   .. CRC is valid
--14353-- Reading syms from /opt/petsc/lib/libnetcdf.so.13.0.0
--14353-- Reading syms from /opt/petsc/lib/libhdf5_hl.so.200.0.1
--14353-- Reading syms from /opt/petsc/lib/libhdf5.so.200.1.0
--14353-- Reading syms from /opt/petsc/lib/libparmetis.so
--14353-- Reading syms from /opt/petsc/lib/libmetis.so
--14353-- Reading syms from /usr/lib64/libmvec.so.1
--14353-- Reading syms from /usr/lib64/libz.so.1.2.11
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libX11.so.6.4.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/librt.so.1
--14353-- Reading syms from /usr/lib64/libxcb.so.1.1.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libXau.so.6.0.0
--14353--    object doesn't have a symbol table
--14353-- REDIR: 0x1030615e (libc.so.6:strnlen) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1030646e (libc.so.6:strpbrk) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10305c7e (libc.so.6:strcmp) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10322dbe (libc.so.6:wcsnlen) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103071ce (libc.so.6:memset) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103214ae (libc.so.6:wcslen) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103077be (libc.so.6:memcpy@@GLIBC_2.14) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1032128e (libc.so.6:wcschr) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10305bee (libc.so.6:index) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103063de (libc.so.6:rindex) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1030708e (libc.so.6:memmove) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
==14353== Preferring higher priority redirection:
--14353--     old: 0x103f38c0 (__memcpy_avx_unalign) R-> (2018.0) 0x048529d0 __memcpy_avx_unaligned_erms
--14353--     new: 0x103f38c0 (__memcpy_avx_unalign) R-> (2018.1) 0x04854270 memmove
--14353-- REDIR: 0x1032131e (libc.so.6:wcscmp) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1030752e (libc.so.6:stpncpy) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103219ae (libc.so.6:wmemchr) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1030628e (libc.so.6:strncmp) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103075ce (libc.so.6:strcasecmp) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10305dee (libc.so.6:strcspn) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103213ae (libc.so.6:wcscpy) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10305b4e (libc.so.6:strcat) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103076ee (libc.so.6:strncasecmp_l) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10306f4e (libc.so.6:bcmp) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1030d36e (libc.so.6:memrchr) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10308b6e (libc.so.6:strchrnul) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10305d4e (libc.so.6:strcpy) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1030768e (libc.so.6:strcasecmp_l) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103060ce (libc.so.6:strlen) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1030633e (libc.so.6:strncpy) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1030748e (libc.so.6:stpcpy) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10306eae (libc.so.6:memchr) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103065ae (libc.so.6:strspn) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103072de (libc.so.6:mempcpy) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x1030762e (libc.so.6:strncasecmp) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10308ace (libc.so.6:rawmemchr) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103061ee (libc.so.6:strncat) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10389aee (libc.so.6:__memcpy_chk) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x10306d8e (libc.so.6:strstr) redirected to 0x48411b0 (_vgnU_ifunc_wrapper)
--14353-- REDIR: 0x103f0710 (libc.so.6:__strrchr_avx2) redirected to 0x4850360 (rindex)
--14353-- REDIR: 0x103f08e0 (libc.so.6:__strlen_avx2) redirected to 0x4850800 (strlen)
--14353-- REDIR: 0x102a64fe (libc.so.6:putenv) redirected to 0x4855af0 (putenv)
--14353-- REDIR: 0x103f0280 (libc.so.6:__strchr_avx2) redirected to 0x48504e0 (index)
--14353-- REDIR: 0x103f0a60 (libc.so.6:__strnlen_avx2) redirected to 0x48507a0 (strnlen)
--14353-- REDIR: 0x103f38c0 (libc.so.6:__memcpy_avx_unaligned_erms) redirected to 0x4854270 (memmove)
--14353-- REDIR: 0x103ebe80 (libc.so.6:__strncmp_avx2) redirected to 0x4850ed0 (strncmp)
--14353-- REDIR: 0x1030393e (libc.so.6:realloc) redirected to 0x484f7b0 (realloc)
--14353-- REDIR: 0x10303f7e (libc.so.6:calloc) redirected to 0x484f540 (calloc)
--14353-- REDIR: 0x103030de (libc.so.6:malloc) redirected to 0x484a740 (malloc)
--14353-- REDIR: 0x103f2140 (libc.so.6:__strncpy_avx2) redirected to 0x4850ad0 (strncpy)
--14353-- REDIR: 0x103f4080 (libc.so.6:__memset_avx2_unaligned_erms) redirected to 0x4854170 (memset)
--14353-- REDIR: 0x103036de (libc.so.6:free) redirected to 0x484d110 (free)
--14353-- REDIR: 0x103ecb80 (libc.so.6:__memcmp_avx2_movbe) redirected to 0x4853a10 (bcmp)
--14353-- REDIR: 0x103eba40 (libc.so.6:__strcmp_avx2) redirected to 0x4851680 (strcmp)
--14353-- REDIR: 0x100ea730 (libstdc++.so.6:operator new(unsigned long)) redirected to 0x484aec0 (operator new(unsigned long))
--14353-- REDIR: 0x100e8a50 (libstdc++.so.6:operator delete(void*)) redirected to 0x484d6b0 (operator delete(void*))
--14353-- REDIR: 0x103ec690 (libc.so.6:__rawmemchr_avx2) redirected to 0x4854d20 (rawmemchr)
--14353-- REDIR: 0x103ed230 (libc.so.6:__strcasecmp_avx) redirected to 0x4851050 (strcasecmp)
--14353-- Reading syms from /usr/lib64/libnuma.so.1.0.0
--14353--    object doesn't have a symbol table
--14353-- REDIR: 0x10306a7e (libc.so.6:__GI_strstr) redirected to 0x4855480 (__strstr_sse2)
--14353-- REDIR: 0x103ec3c0 (libc.so.6:__memchr_avx2) redirected to 0x4851800 (memchr)
--14353-- REDIR: 0x103f0500 (libc.so.6:__strchrnul_avx2) redirected to 0x4854cf0 (strchrnul)
--14353-- REDIR: 0x103f3880 (libc.so.6:__mempcpy_avx_unaligned_erms) redirected to 0x4854e00 (mempcpy)
--14353-- REDIR: 0x10307ece (libc.so.6:strcasestr) redirected to 0x4855770 (strcasestr)
--14353-- REDIR: 0x10320020 (libc.so.6:__strstr_sse2_unaligned) redirected to 0x48553f0 (strstr)
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1
--14353-- REDIR: 0x103eb67e (libc.so.6:__strcspn_sse42) redirected to 0x4855600 (strcspn)
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libverbs-1.12-fi.so
--14353-- Reading syms from /usr/lib64/librdmacm.so.1.3.38.1
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libibverbs.so.1.14.38.1
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libnl-3.so.200.26.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libnl-route-3.so.200.26.0
--14353--    object doesn't have a symbol table
--14353-- REDIR: 0x103eb8fe (libc.so.6:__strspn_sse42) redirected to 0x48556e0 (strspn)
--14353-- REDIR: 0x103f13a0 (libc.so.6:__strncat_avx2) redirected to 0x48506b0 (strncat)
--14353-- Discarding syms at 0x182094a0-0x182458f8 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libverbs-1.12-fi.so (have_dinfo 1)
--14353-- Discarding syms at 0x17cf09b0-0x17d0438f in /usr/lib64/librdmacm.so.1.3.38.1 (have_dinfo 1)
--14353-- Discarding syms at 0x17d12b60-0x17d2733c in /usr/lib64/libibverbs.so.1.14.38.1 (have_dinfo 1)
--14353-- Discarding syms at 0x17d73ae0-0x17daf342 in /usr/lib64/libnl-route-3.so.200.26.0 (have_dinfo 1)
--14353-- Discarding syms at 0x17d39dc0-0x17d47805 in /usr/lib64/libnl-3.so.200.26.0 (have_dinfo 1)
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libverbs-1.1-fi.so
--14353-- Reading syms from /usr/lib64/librdmacm.so.1.3.38.1
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libibverbs.so.1.14.38.1
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libnl-3.so.200.26.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libnl-route-3.so.200.26.0
--14353--    object doesn't have a symbol table
--14353-- Discarding syms at 0x18209310-0x18243a78 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libverbs-1.1-fi.so (have_dinfo 1)
--14353-- Discarding syms at 0x17cf09b0-0x17d0438f in /usr/lib64/librdmacm.so.1.3.38.1 (have_dinfo 1)
--14353-- Discarding syms at 0x17d12b60-0x17d2733c in /usr/lib64/libibverbs.so.1.14.38.1 (have_dinfo 1)
--14353-- Discarding syms at 0x17d73ae0-0x17daf342 in /usr/lib64/libnl-route-3.so.200.26.0 (have_dinfo 1)
--14353-- Discarding syms at 0x17d39dc0-0x17d47805 in /usr/lib64/libnl-3.so.200.26.0 (have_dinfo 1)
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libtcp-fi.so
--14353-- REDIR: 0x103ee8b0 (libc.so.6:__strncasecmp_avx) redirected to 0x4851110 (strncasecmp)
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libsockets-fi.so
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libshm-fi.so
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/librxm-fi.so
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsmx2-fi.so
--14353-- Reading syms from /usr/lib64/libpsm2.so.2.2
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsm3-fi.so
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libibverbs.so.1.14.38.1
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libuuid.so.1.3.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libnl-route-3.so.200.26.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libnl-3.so.200.26.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libmlx-fi.so
--14353-- Reading syms from /usr/lib64/libucp.so.0.0.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libuct.so.0.0.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libucs.so.0.0.0
--14353--    object doesn't have a symbol table
--14353-- Reading syms from /usr/lib64/libucm.so.0.0.0
--14353--    object doesn't have a symbol table
--14353-- REDIR: 0x1038a0ae (libc.so.6:__strcpy_chk) redirected to 0x4854d60 (__strcpy_chk)
--14353-- REDIR: 0x103f3890 (libc.so.6:__memcpy_chk_avx_unaligned_erms) redirected to 0x48552e0 (__memcpy_chk)
--14353-- REDIR: 0x103f2aa0 (libc.so.6:__stpcpy_avx2) redirected to 0x4853b30 (stpcpy)
--14353-- Reading syms from /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libefa-fi.so
--14353-- Reading syms from /usr/lib64/libefa.so.1.1.38.1
--14353--    object doesn't have a symbol table
--14353-- Discarding syms at 0x19e162e0-0x19e5efa8 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libefa-fi.so (have_dinfo 1)
--14353-- Discarding syms at 0x4877280-0x487c748 in /usr/lib64/libefa.so.1.1.38.1 (have_dinfo 1)
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x196A5884: ??? (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsm3-fi.so)
==14353==    by 0x1968FE16: ??? (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsm3-fi.so)
==14353==    by 0x1964495A: ??? (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsm3-fi.so)
==14353==    by 0x17E099C6: fi_getinfo@@FABRIC_1.3 (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0xEEC1166: MPIDI_OFI_mpi_init_hook (ofi_init.c:1501)
==14353==    by 0xEA109DC: MPID_Init (ch4_init.c:1307)
==14353==    by 0xED29D1C: MPIR_Init_thread (initthread.c:142)
==14353==    by 0xED29D1C: PMPI_Init_thread (initthread.c:280)
==14353==    by 0xC2EDDD8: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
--14353-- REDIR: 0x10320730 (libc.so.6:memcpy at GLIBC_2.2.5) redirected to 0x4851890 (memcpy at GLIBC_2.2.5)
--14353-- REDIR: 0x103f1db0 (libc.so.6:__strcpy_avx2) redirected to 0x4850950 (strcpy)
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x196A5884: ??? (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsm3-fi.so)
==14353==    by 0x196A5A73: ??? (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsm3-fi.so)
==14353==    by 0x1968F942: ??? (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsm3-fi.so)
==14353==    by 0x1964495A: ??? (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsm3-fi.so)
==14353==    by 0x17E099C6: fi_getinfo@@FABRIC_1.3 (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0xEEC1260: MPIDI_OFI_mpi_init_hook (ofi_init.c:1552)
==14353==    by 0xEA109DC: MPID_Init (ch4_init.c:1307)
==14353==    by 0xED29D1C: MPIR_Init_thread (initthread.c:142)
==14353==    by 0xED29D1C: PMPI_Init_thread (initthread.c:280)
==14353==    by 0xC2EDDD8: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
--14353-- REDIR: 0x10304c0e (libc.so.6:posix_memalign) redirected to 0x484fac0 (posix_memalign)
--14353-- REDIR: 0x10303e7e (libc.so.6:memalign) redirected to 0x484fbe0 (memalign)
--14353-- REDIR: 0x103f0d30 (libc.so.6:__strcat_avx2) redirected to 0x4850510 (strcat)
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
--14353-- REDIR: 0x100e8a60 (libstdc++.so.6:operator delete(void*, unsigned long)) redirected to 0x484d930 (operator delete(void*, unsigned long))
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41338A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413816: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413830: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413847: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41385E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413875: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41388C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138A3: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138BA: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x18E31E0B: ofi_cq_readerr (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/librxm-fi.so)
==14353==    by 0xEEB6568: fi_cq_readerr (fi_eq.h:397)
==14353==    by 0xEEB6568: MPIDI_OFI_handle_cq_error (ofi_events.c:977)
==14353==    by 0xEED0BDF: MPIDI_OFI_progress (ofi_progress.c:44)
==14353==    by 0xEEB7150: MPIDI_OFI_mpi_finalize_hook (ofi_init.c:2218)
==14353==    by 0xEA0F05B: MPID_Finalize (ch4_init.c:1475)
==14353==    by 0xEB6C688: PMPI_Finalize (finalize.c:159)
==14353==    by 0xC2EF533: PetscFinalize (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405AA0: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0xEEB6520: MPIDI_OFI_handle_cq_error (ofi_events.c:964)
==14353== 
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x4851896: memcpy at GLIBC_2.2.5 (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x18E31F14: ofi_cq_readerr (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/librxm-fi.so)
==14353==    by 0xEEB6568: fi_cq_readerr (fi_eq.h:397)
==14353==    by 0xEEB6568: MPIDI_OFI_handle_cq_error (ofi_events.c:977)
==14353==    by 0xEED0BDF: MPIDI_OFI_progress (ofi_progress.c:44)
==14353==    by 0xEEB7150: MPIDI_OFI_mpi_finalize_hook (ofi_init.c:2218)
==14353==    by 0xEA0F05B: MPID_Finalize (ch4_init.c:1475)
==14353==    by 0xEB6C688: PMPI_Finalize (finalize.c:159)
==14353==    by 0xC2EF533: PetscFinalize (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405AA0: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0xEEB6520: MPIDI_OFI_handle_cq_error (ofi_events.c:964)
==14353== 
--14353-- Discarding syms at 0x1920ed60-0x1925d068 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsmx2-fi.so (have_dinfo 1)
--14353-- Discarding syms at 0x17cf1950-0x17d3f462 in /usr/lib64/libpsm2.so.2.2 (have_dinfo 1)
--14353-- Discarding syms at 0x19a07400-0x19a32638 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libmlx-fi.so (have_dinfo 1)
--14353-- Discarding syms at 0x1960db40-0x196eabc8 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libpsm3-fi.so (have_dinfo 1)
--14353-- Discarding syms at 0x17d61b60-0x17d7633c in /usr/lib64/libibverbs.so.1.14.38.1 (have_dinfo 1)
--14353-- Discarding syms at 0x486e300-0x4871a0e in /usr/lib64/libuuid.so.1.3.0 (have_dinfo 1)
--14353-- Discarding syms at 0x1806aae0-0x180a6342 in /usr/lib64/libnl-route-3.so.200.26.0 (have_dinfo 1)
--14353-- Discarding syms at 0x17d88dc0-0x17d96805 in /usr/lib64/libnl-3.so.200.26.0 (have_dinfo 1)
--14353-- Discarding syms at 0x18e07540-0x18e40c48 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/librxm-fi.so (have_dinfo 1)
--14353-- Discarding syms at 0x18206e90-0x18235118 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libtcp-fi.so (have_dinfo 1)
--14353-- Discarding syms at 0x18607610-0x186480a8 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libsockets-fi.so (have_dinfo 1)
--14353-- Discarding syms at 0x18a10410-0x18a40108 in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/prov/libshm-fi.so (have_dinfo 1)
==14353== 
==14353== HEAP SUMMARY:
==14353==     in use at exit: 16,852,722,870 bytes in 85,223 blocks
==14353==   total heap usage: 349,714 allocs, 264,491 frees, 17,488,811,280 bytes allocated
==14353== 
==14353== Searching for pointers to 85,223 not-freed blocks
==14353== Checked 4,306,669,360 bytes
==14353== 
==14353== 0 bytes in 1 blocks are definitely lost in loss record 1 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x4007602: _dl_find_object_update (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FE77: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353==    by 0x102ED7CD: _dlerror_run (in /usr/lib64/libc.so.6)
==14353==    by 0x102EDDB7: dlopen@@GLIBC_2.34 (in /usr/lib64/libc.so.6)
==14353== 
==14353== 8 bytes in 1 blocks are still reachable in loss record 2 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xBC36D7C: ??? (in /usr/lib64/libgomp.so.1.0.0)
==14353==    by 0xBC4806A: ??? (in /usr/lib64/libgomp.so.1.0.0)
==14353==    by 0xBC34DE4: ??? (in /usr/lib64/libgomp.so.1.0.0)
==14353==    by 0x40080BD: call_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40081BB: _dl_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40207D9: ??? (in /usr/lib64/ld-linux-x86-64.so.2)
==14353== 
==14353== 8 bytes in 1 blocks are definitely lost in loss record 3 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x17D70BDC: ???
==14353==    by 0x19E1651C: ???
==14353==    by 0x19E1DECF: ???
==14353==    by 0x19E2060D: ???
==14353==    by 0x17E0887F: ofi_reg_dl_prov (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E091FC: fi_ini (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E09C1B: fi_getinfo@@FABRIC_1.3 (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0xEEC1166: MPIDI_OFI_mpi_init_hook (ofi_init.c:1501)
==14353==    by 0xEA109DC: MPID_Init (ch4_init.c:1307)
==14353==    by 0xED29D1C: MPIR_Init_thread (initthread.c:142)
==14353==    by 0xED29D1C: PMPI_Init_thread (initthread.c:280)
==14353==    by 0xC2EDDD8: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353== 
==14353== 16 bytes in 1 blocks are possibly lost in loss record 4 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are possibly lost in loss record 5 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are possibly lost in loss record 6 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are possibly lost in loss record 7 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are possibly lost in loss record 8 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are possibly lost in loss record 9 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are possibly lost in loss record 10 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are possibly lost in loss record 11 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 12 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 13 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 14 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 15 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 16 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 17 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 18 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 19 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 20 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 21 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 22 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 23 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 24 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 25 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 26 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 27 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 28 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 29 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 30 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 31 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 32 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16 bytes in 1 blocks are indirectly lost in loss record 33 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 21 bytes in 1 blocks are still reachable in loss record 34 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x10305F7E: strdup (in /usr/lib64/libc.so.6)
==14353==    by 0xD8851AD: adios_read_hooks_init (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xD879DE3: common_read_init_method (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2ECD55: PetscInitialize_Common (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2EDE28: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 24 bytes in 1 blocks are still reachable in loss record 35 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x40275FF: strdup (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x4018047: _dl_load_cache_lookup (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400BC74: _dl_map_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FB28: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353== 
==14353== 24 bytes in 1 blocks are definitely lost in loss record 36 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x17D72DDD: ???
==14353==    by 0x40080BD: call_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40081BB: _dl_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F64: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F2ED: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353==    by 0x102ED7CD: _dlerror_run (in /usr/lib64/libc.so.6)
==14353== 
==14353== 27 bytes in 1 blocks are still reachable in loss record 37 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x181A12C8: ucs_load_modules (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x1818AC2D: ??? (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x40080BD: call_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40081BB: _dl_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F64: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F2ED: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353== 
==14353== 30 bytes in 1 blocks are definitely lost in loss record 38 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x17D2FCA6: ???
==14353==    by 0x17CF1AD7: ???
==14353==    by 0x40080BD: call_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40081BB: _dl_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F64: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F2ED: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353== 
==14353== 31 bytes in 1 blocks are still reachable in loss record 39 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x10305F7E: strdup (in /usr/lib64/libc.so.6)
==14353==    by 0xD8851FB: adios_read_hooks_init (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xD879DE3: common_read_init_method (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2ECD55: PetscInitialize_Common (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2EDE28: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 40 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 41 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 42 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 43 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 44 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 45 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 46 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 47 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 48 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 49 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 50 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 51 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 52 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 53 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 54 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 55 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 56 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 57 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 58 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 59 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 60 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 61 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 62 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 63 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 64 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 65 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 66 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 67 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 68 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 69 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 70 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 71 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 72 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 73 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 74 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 75 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 76 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 77 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 78 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 79 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 80 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 81 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 82 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 83 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 84 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 85 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 86 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 87 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 88 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 89 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 90 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 91 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 92 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 93 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 94 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are possibly lost in loss record 95 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 96 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 97 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 98 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 99 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 100 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 101 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 102 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 103 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 104 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 105 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 106 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 107 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 108 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 109 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 110 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 111 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 112 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 113 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 114 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 115 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 116 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 117 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 118 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 119 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 120 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 121 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 122 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 123 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 124 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 125 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 126 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 127 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 128 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 129 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 130 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 131 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 132 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 133 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 134 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 135 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 136 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 137 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 138 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 139 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 140 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 141 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 142 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 143 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 144 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 145 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 146 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 147 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 148 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 149 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 150 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 151 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 152 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 153 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 154 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 155 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 156 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 157 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 158 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 159 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 160 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 161 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 162 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 163 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 164 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 165 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 166 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 167 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 168 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 169 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 170 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 171 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 172 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 173 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 174 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 175 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 176 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 177 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 178 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 179 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 180 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 181 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 182 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 183 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 184 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 185 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 186 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 187 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 188 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 189 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 190 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 191 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 192 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 193 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 194 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 195 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 196 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 197 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 198 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 199 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 200 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 201 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 202 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 203 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 204 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 205 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 206 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 207 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 208 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 32 bytes in 1 blocks are indirectly lost in loss record 209 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 37 bytes in 1 blocks are definitely lost in loss record 210 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x196D84B5: ???
==14353==    by 0x178F665F: ???
==14353==    by 0xE3F65EF: ???
==14353==    by 0xDE50A1F: ???
==14353==    by 0xDE50F1F: ???
==14353==    by 0xF2AC65F: ??? (intel_transport_dsa.h:1231)
==14353==    by 0xF2D819F: ??? (intel_transport_recv.h:22)
==14353==    by 0xF2D81BF: ??? (intel_transport_recv.h:29)
==14353==    by 0xDF9E5BF: ???
==14353==    by 0xE3F65EF: ???
==14353==    by 0xF2CD8EF: ??? (intel_transport_dsa.h:1231)
==14353== 
==14353== 40 bytes in 1 blocks are definitely lost in loss record 211 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x1822745A: ???
==14353==    by 0x1820A87E: ???
==14353==    by 0x17E0887F: ofi_reg_dl_prov (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E091FC: fi_ini (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E09C1B: fi_getinfo@@FABRIC_1.3 (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0xEEC1166: MPIDI_OFI_mpi_init_hook (ofi_init.c:1501)
==14353==    by 0xEA109DC: MPID_Init (ch4_init.c:1307)
==14353==    by 0xED29D1C: MPIR_Init_thread (initthread.c:142)
==14353==    by 0xED29D1C: PMPI_Init_thread (initthread.c:280)
==14353==    by 0xC2EDDD8: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 40 bytes in 1 blocks are definitely lost in loss record 212 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x182255FA: ???
==14353==    by 0x1820A6EE: ???
==14353==    by 0x17E0887F: ofi_reg_dl_prov (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E091FC: fi_ini (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E09C1B: fi_getinfo@@FABRIC_1.3 (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0xEEC1166: MPIDI_OFI_mpi_init_hook (ofi_init.c:1501)
==14353==    by 0xEA109DC: MPID_Init (ch4_init.c:1307)
==14353==    by 0xED29D1C: MPIR_Init_thread (initthread.c:142)
==14353==    by 0xED29D1C: PMPI_Init_thread (initthread.c:280)
==14353==    by 0xC2EDDD8: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 40 bytes in 1 blocks are definitely lost in loss record 213 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x18E227AA: ???
==14353==    by 0x18E07B42: ???
==14353==    by 0x17E0887F: ofi_reg_dl_prov (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E091FC: fi_ini (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E09C1B: fi_getinfo@@FABRIC_1.3 (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0xEEC1166: MPIDI_OFI_mpi_init_hook (ofi_init.c:1501)
==14353==    by 0xEA109DC: MPID_Init (ch4_init.c:1307)
==14353==    by 0xED29D1C: MPIR_Init_thread (initthread.c:142)
==14353==    by 0xED29D1C: PMPI_Init_thread (initthread.c:280)
==14353==    by 0xC2EDDD8: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 40 bytes in 1 blocks are definitely lost in loss record 214 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x19E40A7E: ???
==14353==    by 0x19E205FC: ???
==14353==    by 0x17E0887F: ofi_reg_dl_prov (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E091FC: fi_ini (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E09C1B: fi_getinfo@@FABRIC_1.3 (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0xEEC1166: MPIDI_OFI_mpi_init_hook (ofi_init.c:1501)
==14353==    by 0xEA109DC: MPID_Init (ch4_init.c:1307)
==14353==    by 0xED29D1C: MPIR_Init_thread (initthread.c:142)
==14353==    by 0xED29D1C: PMPI_Init_thread (initthread.c:280)
==14353==    by 0xC2EDDD8: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 46 bytes in 7 blocks are still reachable in loss record 215 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x10305F7E: strdup (in /usr/lib64/libc.so.6)
==14353==    by 0x1818B7E8: ucs_config_sscanf_string (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x1818EC50: ??? (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x1818ED57: ucs_config_parser_set_default_values (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x1818FBDC: ucs_config_parser_fill_opts (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x18192455: ucs_global_opts_init (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x1818ABA9: ??? (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x40080BD: call_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40081BB: _dl_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F64: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F2ED: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353== 
==14353== 48 bytes in 1 blocks are possibly lost in loss record 216 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are possibly lost in loss record 217 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are possibly lost in loss record 218 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are possibly lost in loss record 219 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are indirectly lost in loss record 220 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are indirectly lost in loss record 221 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are indirectly lost in loss record 222 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are indirectly lost in loss record 223 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are indirectly lost in loss record 224 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are indirectly lost in loss record 225 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are indirectly lost in loss record 226 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 48 bytes in 1 blocks are indirectly lost in loss record 227 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 61 bytes in 1 blocks are still reachable in loss record 228 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x4008DCB: open_path (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400BC07: _dl_map_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FB28: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353==    by 0x102ED7CD: _dlerror_run (in /usr/lib64/libc.so.6)
==14353== 
==14353== 80 bytes in 1 blocks are possibly lost in loss record 229 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are possibly lost in loss record 230 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are possibly lost in loss record 231 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are indirectly lost in loss record 232 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are indirectly lost in loss record 233 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are indirectly lost in loss record 234 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are indirectly lost in loss record 235 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are indirectly lost in loss record 236 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are indirectly lost in loss record 237 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are indirectly lost in loss record 238 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 80 bytes in 1 blocks are indirectly lost in loss record 239 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 85 bytes in 2 blocks are still reachable in loss record 240 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x400F008: _dl_new_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400A252: _dl_map_object_from_fd (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400BB5B: _dl_map_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FB28: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353== 
==14353== 88 bytes in 1 blocks are still reachable in loss record 241 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x400E0A2: _dl_lookup_symbol_x (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40126AF: _dl_relocate_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FD55: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353==    by 0x102ED7CD: _dlerror_run (in /usr/lib64/libc.so.6)
==14353== 
==14353== 92 bytes in 4 blocks are still reachable in loss record 242 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x40275FF: strdup (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x4018047: _dl_load_cache_lookup (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400BC74: _dl_map_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40053E4: openaux (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400583D: _dl_map_object_deps (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FB8E: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353== 
==14353== 92 bytes in 4 blocks are still reachable in loss record 243 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x400F008: _dl_new_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400A252: _dl_map_object_from_fd (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400BB5B: _dl_map_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40053E4: openaux (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400583D: _dl_map_object_deps (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FB8E: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353== 
==14353== 128 bytes in 4 blocks are still reachable in loss record 244 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x400496F: _dl_close_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400513A: _dl_close (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353==    by 0x102ED7CD: _dlerror_run (in /usr/lib64/libc.so.6)
==14353==    by 0x102ED4D7: dlclose@@GLIBC_2.34 (in /usr/lib64/libc.so.6)
==14353==    by 0x17E082D6: fi_fini (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E0775E: ??? (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x17E36810: ??? (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0x102A6DA4: __run_exit_handlers (in /usr/lib64/libc.so.6)
==14353==    by 0x102A6F2F: exit (in /usr/lib64/libc.so.6)
==14353== 
==14353== 128 bytes in 1 blocks are indirectly lost in loss record 245 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 128 bytes in 1 blocks are indirectly lost in loss record 246 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 144 bytes in 1 blocks are still reachable in loss record 247 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xD8CFFD3: adios_query_hooks_init (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xD8CE53F: common_query_init (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xD879F8F: common_read_init_method (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2ECD55: PetscInitialize_Common (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2EDE28: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 160 bytes in 1 blocks are possibly lost in loss record 248 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 160 bytes in 1 blocks are indirectly lost in loss record 249 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 160 bytes in 1 blocks are indirectly lost in loss record 250 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 160 bytes in 1 blocks are indirectly lost in loss record 251 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 160 bytes in 1 blocks are indirectly lost in loss record 252 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 256 bytes in 2 blocks are possibly lost in loss record 253 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 512 bytes in 1 blocks are still reachable in loss record 254 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x1818BC60: ucs_config_sscanf_array (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x1818EC50: ??? (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x1818ED57: ucs_config_parser_set_default_values (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x1818FBDC: ucs_config_parser_fill_opts (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x18192455: ucs_global_opts_init (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x1818ABA9: ??? (in /usr/lib64/libucs.so.0.0.0)
==14353==    by 0x40080BD: call_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40081BB: _dl_init (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F64: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F2ED: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353== 
==14353== 568 bytes in 1 blocks are still reachable in loss record 255 of 967
==14353==    at 0x484A7B5: malloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x400F496: add_to_global_resize (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x4010177: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353==    by 0x102ED7CD: _dlerror_run (in /usr/lib64/libc.so.6)
==14353==    by 0x102EDDB7: dlopen@@GLIBC_2.34 (in /usr/lib64/libc.so.6)
==14353== 
==14353== 1,512 bytes in 1 blocks are still reachable in loss record 256 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xD88519A: adios_read_hooks_init (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xD879DE3: common_read_init_method (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2ECD55: PetscInitialize_Common (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2EDE28: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,600 bytes in 1 blocks are possibly lost in loss record 257 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,800 bytes in 6 blocks are still reachable in loss record 258 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x40173EC: _dl_check_map_versions (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FBD2: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353==    by 0x102ED7CD: _dlerror_run (in /usr/lib64/libc.so.6)
==14353==    by 0x102EDDB7: dlopen@@GLIBC_2.34 (in /usr/lib64/libc.so.6)
==14353== 
==14353== 1,984 bytes in 124 blocks are indirectly lost in loss record 259 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,984 bytes in 124 blocks are indirectly lost in loss record 260 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,984 bytes in 124 blocks are indirectly lost in loss record 261 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,984 bytes in 124 blocks are indirectly lost in loss record 262 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,984 bytes in 124 blocks are indirectly lost in loss record 263 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,984 bytes in 124 blocks are indirectly lost in loss record 264 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,984 bytes in 124 blocks are indirectly lost in loss record 265 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,984 bytes in 124 blocks are indirectly lost in loss record 266 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 267 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 268 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 269 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 270 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 271 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 272 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 273 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 274 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 275 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 276 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 277 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 278 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 279 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 280 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 281 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 282 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 283 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 284 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 285 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 286 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 287 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 288 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 289 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 290 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 291 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 292 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 293 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 294 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 295 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 296 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 297 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 298 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 299 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 300 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 301 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 302 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 303 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 304 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 305 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 306 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 307 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 308 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 309 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 310 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 311 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 312 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 313 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 314 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 315 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 316 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 317 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 318 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 319 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 320 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 321 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 322 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 323 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 324 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 325 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 326 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 327 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 328 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 329 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 330 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 331 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 332 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 333 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 334 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 335 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 336 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF61E: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 337 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA10: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 338 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979149: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 339 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC96138D: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 340 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9613A1: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 341 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 342 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 343 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 344 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33739D: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 345 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394DD2: PetscLayoutSetUp.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A926: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,000 bytes in 125 blocks are indirectly lost in loss record 346 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C25D1: PetscObjectChangeTypeName (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A939: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,412 bytes in 2 blocks are still reachable in loss record 347 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x400ED12: _dl_new_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400A252: _dl_map_object_from_fd (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400BB5B: _dl_map_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FB28: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x102EDD1B: dlopen_doit (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x103C7FE2: _dl_catch_error (in /usr/lib64/libc.so.6)
==14353== 
==14353== 2,928 bytes in 1 blocks are possibly lost in loss record 348 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 349 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 350 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 351 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 352 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 353 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 354 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 355 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 356 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 357 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 358 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 359 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 360 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 361 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 362 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 363 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 364 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 365 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 366 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 367 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 368 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 369 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 370 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 371 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 372 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 373 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 374 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 375 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 376 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 377 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 378 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 379 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 380 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 381 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 382 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 383 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 384 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 385 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 386 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 387 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 388 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 389 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 390 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 391 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 392 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 393 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 394 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 395 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 396 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 397 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 398 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 399 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 400 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 401 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 402 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 403 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 3,968 bytes in 124 blocks are indirectly lost in loss record 404 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 405 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 406 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 407 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 408 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 409 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 410 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 411 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 412 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 413 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 414 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 415 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 416 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 417 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 418 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 419 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 420 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 421 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 422 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 423 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 424 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 425 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 426 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 427 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 428 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 429 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 430 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 431 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 432 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 433 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 434 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 435 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 436 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 437 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 438 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 439 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 440 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 441 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 442 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 443 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 444 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 445 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 446 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 447 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 448 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 449 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 450 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 451 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 452 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 453 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 454 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 455 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 456 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 457 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 458 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 459 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 460 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 461 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 462 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 463 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 464 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 465 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 466 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 467 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 468 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 469 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 470 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 471 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 472 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 473 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 474 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 475 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 476 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 477 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 478 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 479 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 480 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 481 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 482 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 483 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 484 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 485 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 486 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 487 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 488 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 489 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 490 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 491 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 492 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 493 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 494 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 495 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 496 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 497 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 498 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 499 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 500 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 501 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 502 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 503 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 504 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 505 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 506 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 507 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 508 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 509 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 510 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 511 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 512 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 513 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 514 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 515 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 516 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 517 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 518 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 519 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 520 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 521 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 522 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 523 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 524 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 525 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 526 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 527 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 528 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 529 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 530 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 531 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 532 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 533 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 534 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 535 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 536 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 537 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 538 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 539 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 540 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 541 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 542 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 543 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 544 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 545 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 546 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 547 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 548 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 549 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 550 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 551 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 552 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 553 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 554 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 555 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 556 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 557 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 558 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 559 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 560 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 561 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 562 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 563 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 564 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 565 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 566 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 567 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 568 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 569 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 570 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 571 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 572 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 573 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 574 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 575 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 576 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 577 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 578 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 579 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 580 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 581 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 582 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 583 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 584 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 585 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 586 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 587 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 588 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 589 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 590 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 591 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 592 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 593 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 594 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 595 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 596 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 597 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 598 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 599 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 600 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 601 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 602 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 603 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 604 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 605 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 606 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 607 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 608 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 609 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 610 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 611 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 612 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 613 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 614 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 615 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 616 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 617 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 618 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 619 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 620 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 621 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 622 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 623 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 624 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 625 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 626 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 627 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 628 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 629 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 630 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 631 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 632 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 633 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 634 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 635 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 636 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 637 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 638 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 639 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 640 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 641 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 642 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 643 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 644 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 645 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 646 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 647 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 648 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 649 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 650 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 651 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 652 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 653 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 654 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 655 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 656 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 657 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 658 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 659 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 660 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 661 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 662 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 663 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 664 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 665 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 666 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 667 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 668 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 669 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 670 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 671 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 672 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 673 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 674 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 675 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 676 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 677 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 678 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 679 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 680 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 681 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 682 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 683 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 684 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 685 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 686 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 687 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 688 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 689 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 690 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 691 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 692 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 693 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 694 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 695 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 696 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 697 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 698 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 699 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 700 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 701 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 702 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 703 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 704 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 705 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 706 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 707 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 708 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 709 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 710 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 711 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 712 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 713 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 714 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 715 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 716 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 717 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 718 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 719 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 720 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 721 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 722 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 723 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 724 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 725 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 726 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 727 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 728 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 729 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 730 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 731 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 732 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 733 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 734 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 735 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 736 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 737 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 738 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 739 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 740 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 741 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 742 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 743 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 744 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 745 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 746 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 747 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 748 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22D9F5: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DD7: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 749 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 750 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978DF5: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 751 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 752 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E13: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 753 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 754 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E34: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 755 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 756 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E55: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 757 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 758 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E73: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 759 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 760 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978E91: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 761 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 762 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EAF: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 763 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 764 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EC9: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 765 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 766 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EE3: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 767 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 768 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978EFD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 769 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 770 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F17: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 771 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 772 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F35: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 773 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 774 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F53: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 775 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 776 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F71: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 777 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 778 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978F8F: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 779 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 780 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 781 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 782 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 783 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 784 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979024: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 785 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 786 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979042: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 787 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 788 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979060: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 789 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 790 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97907E: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 791 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 792 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC97909C: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 793 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 794 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790BA: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 795 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 796 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790D8: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 797 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 798 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9790F6: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 799 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 800 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979114: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 801 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA82: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 802 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979132: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 803 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,000 bytes in 125 blocks are indirectly lost in loss record 804 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC30A870: VecCreate_Seq_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B328: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 4,816 bytes in 4 blocks are still reachable in loss record 805 of 967
==14353==    at 0x484F5EF: calloc (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x400ED12: _dl_new_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400A252: _dl_map_object_from_fd (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400BB5B: _dl_map_object (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x40053E4: openaux (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400583D: _dl_map_object_deps (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x400FB8E: dl_open_worker_begin (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F289: dl_open_worker (in /usr/lib64/ld-linux-x86-64.so.2)
==14353==    by 0x103C7F07: _dl_catch_exception (in /usr/lib64/libc.so.6)
==14353==    by 0x400F6BB: _dl_open (in /usr/lib64/ld-linux-x86-64.so.2)
==14353== 
==14353== 5,248 (2,928 direct, 2,320 indirect) bytes in 1 blocks are definitely lost in loss record 806 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 5,248 (2,928 direct, 2,320 indirect) bytes in 1 blocks are definitely lost in loss record 807 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 5,952 bytes in 124 blocks are indirectly lost in loss record 808 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 5,952 bytes in 124 blocks are indirectly lost in loss record 809 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 5,952 bytes in 124 blocks are indirectly lost in loss record 810 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 5,952 bytes in 124 blocks are indirectly lost in loss record 811 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 812 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 813 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 814 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 815 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 816 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 817 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 818 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 819 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 820 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 821 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 822 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 823 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 824 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 825 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 826 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 827 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 828 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 829 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 830 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 831 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 832 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 833 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 834 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 835 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 836 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FAD: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 837 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FCB: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 838 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978FEC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 6,000 bytes in 125 blocks are indirectly lost in loss record 839 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2B08EE: PetscStrallocpy (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC22DA9B: PetscFunctionListAdd_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C4BEC: PetscObjectComposeFunction_Petsc (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2C66B6: PetscObjectComposeFunction_Private (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC979006: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 9,920 bytes in 124 blocks are indirectly lost in loss record 840 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 9,920 bytes in 124 blocks are indirectly lost in loss record 841 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 9,920 bytes in 124 blocks are indirectly lost in loss record 842 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 843 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 844 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 845 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 846 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 847 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 848 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 849 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 850 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 851 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 852 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 853 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 854 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 855 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 856 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 857 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 858 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 859 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 860 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 861 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 862 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 863 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 864 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 865 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 866 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 867 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 868 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5E3: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 869 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF5FE: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 870 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 10,000 bytes in 125 blocks are indirectly lost in loss record 871 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC394FEF: PetscLayoutCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3370D5: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 15,744 bytes in 123 blocks are indirectly lost in loss record 872 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,000 bytes in 125 blocks are indirectly lost in loss record 873 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,000 bytes in 125 blocks are indirectly lost in loss record 874 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,000 bytes in 125 blocks are indirectly lost in loss record 875 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,000 bytes in 125 blocks are indirectly lost in loss record 876 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,000 bytes in 125 blocks are indirectly lost in loss record 877 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,000 bytes in 125 blocks are indirectly lost in loss record 878 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,000 bytes in 125 blocks are indirectly lost in loss record 879 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC978CDC: MatCreate_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCD86040: MatSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9CB: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are possibly lost in loss record 880 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are possibly lost in loss record 881 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are possibly lost in loss record 882 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are possibly lost in loss record 883 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are possibly lost in loss record 884 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are possibly lost in loss record 885 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are indirectly lost in loss record 886 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are indirectly lost in loss record 887 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are indirectly lost in loss record 888 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,384 bytes in 1 blocks are indirectly lost in loss record 889 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 18,304 (1,600 direct, 16,704 indirect) bytes in 1 blocks are definitely lost in loss record 890 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 18,304 (1,600 direct, 16,704 indirect) bytes in 1 blocks are definitely lost in loss record 891 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 18,304 (1,600 direct, 16,704 indirect) bytes in 1 blocks are definitely lost in loss record 892 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 18,304 (1,600 direct, 16,704 indirect) bytes in 1 blocks are definitely lost in loss record 893 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 19,840 bytes in 124 blocks are indirectly lost in loss record 894 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 895 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 896 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 897 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 898 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 899 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 900 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 901 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 902 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 903 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 904 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 905 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 906 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 907 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 908 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 20,000 bytes in 125 blocks are indirectly lost in loss record 909 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300136: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC2F1652: PetscObjectComposedDataIncreaseReal (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC33B66C: VecSet (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B358: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,031,616 bytes in 124 blocks are indirectly lost in loss record 910 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,031,616 bytes in 124 blocks are indirectly lost in loss record 911 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,031,616 bytes in 124 blocks are indirectly lost in loss record 912 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,031,616 bytes in 124 blocks are indirectly lost in loss record 913 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,031,616 bytes in 124 blocks are indirectly lost in loss record 914 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,031,616 bytes in 124 blocks are indirectly lost in loss record 915 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 916 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 917 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 918 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 919 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 920 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 921 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 922 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 923 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FAEC: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 924 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,048,000 bytes in 125 blocks are indirectly lost in loss record 925 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC31B2EE: VecCreate_Seq (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC3373BD: VecSetType (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC336A4A: VecSetFromOptions (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB48: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,269,696 (198,400 direct, 2,071,296 indirect) bytes in 124 blocks are definitely lost in loss record 926 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,271,616 (200,000 direct, 2,071,616 indirect) bytes in 125 blocks are definitely lost in loss record 927 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,271,616 (200,000 direct, 2,071,616 indirect) bytes in 125 blocks are definitely lost in loss record 928 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,271,616 (200,000 direct, 2,071,616 indirect) bytes in 125 blocks are definitely lost in loss record 929 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,271,616 (200,000 direct, 2,071,616 indirect) bytes in 125 blocks are definitely lost in loss record 930 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,271,616 (200,000 direct, 2,071,616 indirect) bytes in 125 blocks are definitely lost in loss record 931 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 932 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 933 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 934 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 935 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 936 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 937 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 938 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 939 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FACA: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 940 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 2,288,000 (200,000 direct, 2,088,000 indirect) bytes in 125 blocks are definitely lost in loss record 941 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC337007: VecCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FB26: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,777,216 bytes in 1 blocks are possibly lost in loss record 942 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 16,777,216 bytes in 1 blocks are possibly lost in loss record 943 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 452,984,832 bytes in 27 blocks are possibly lost in loss record 944 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 486,539,264 bytes in 29 blocks are possibly lost in loss record 945 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 486,539,264 bytes in 29 blocks are possibly lost in loss record 946 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 503,316,480 bytes in 30 blocks are possibly lost in loss record 947 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 520,093,696 bytes in 31 blocks are possibly lost in loss record 948 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 520,093,696 bytes in 31 blocks are possibly lost in loss record 949 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 553,648,128 bytes in 33 blocks are possibly lost in loss record 950 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 620,756,992 bytes in 37 blocks are possibly lost in loss record 951 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,476,395,008 bytes in 88 blocks are indirectly lost in loss record 952 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,477,051,008 (366,000 direct, 1,476,685,008 indirect) bytes in 125 blocks are definitely lost in loss record 953 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,543,503,872 bytes in 92 blocks are indirectly lost in loss record 954 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,544,159,872 (366,000 direct, 1,543,793,872 indirect) bytes in 125 blocks are definitely lost in loss record 955 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,577,058,304 bytes in 94 blocks are indirectly lost in loss record 956 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,577,058,304 bytes in 94 blocks are indirectly lost in loss record 957 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,577,714,304 (366,000 direct, 1,577,348,304 indirect) bytes in 125 blocks are definitely lost in loss record 958 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,577,714,304 (366,000 direct, 1,577,348,304 indirect) bytes in 125 blocks are definitely lost in loss record 959 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,593,835,520 bytes in 95 blocks are indirectly lost in loss record 960 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,594,486,144 (363,072 direct, 1,594,123,072 indirect) bytes in 124 blocks are definitely lost in loss record 961 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,610,612,736 bytes in 96 blocks are indirectly lost in loss record 962 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,610,612,736 bytes in 96 blocks are indirectly lost in loss record 963 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,611,268,736 (366,000 direct, 1,610,902,736 indirect) bytes in 125 blocks are definitely lost in loss record 964 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,611,268,736 (366,000 direct, 1,610,902,736 indirect) bytes in 125 blocks are definitely lost in loss record 965 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,644,167,168 bytes in 98 blocks are indirectly lost in loss record 966 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC9615D3: MatSeqDenseSetPreallocation_SeqDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC976348: MatSeqDenseSetPreallocation (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A9DF: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 1,644,823,168 (366,000 direct, 1,644,457,168 indirect) bytes in 125 blocks are definitely lost in loss record 967 of 967
==14353==    at 0x484FC80: memalign (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0xC2FF982: PetscMallocAlign (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC300318: PetscMallocA (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xCDBF517: MatCreate (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0xC98A8B3: MatCreateDense (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x40FC19: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== LEAK SUMMARY:
==14353==    definitely lost: 6,135,987 bytes in 3,013 blocks
==14353==    indirectly lost: 12,668,942,032 bytes in 81,835 blocks
==14353==      possibly lost: 4,177,632,384 bytes in 331 blocks
==14353==    still reachable: 12,467 bytes in 44 blocks
==14353==         suppressed: 0 bytes in 0 blocks
==14353== 
==14353== ERROR SUMMARY: 2151 errors from 153 contexts (suppressed: 0 from 0)
==14353== 
==14353== 1 errors in context 1 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4137D7: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 1 errors in context 2 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41338A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 1 errors in context 3 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413373: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 1 errors in context 4 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x196A5884: ???
==14353==    by 0x196A5A73: ???
==14353==    by 0x1968F942: ???
==14353==    by 0x1964495A: ???
==14353==    by 0x17E099C6: fi_getinfo@@FABRIC_1.3 (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0xEEC1260: MPIDI_OFI_mpi_init_hook (ofi_init.c:1552)
==14353==    by 0xEA109DC: MPID_Init (ch4_init.c:1307)
==14353==    by 0xED29D1C: MPIR_Init_thread (initthread.c:142)
==14353==    by 0xED29D1C: PMPI_Init_thread (initthread.c:280)
==14353==    by 0xC2EDDD8: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 1 errors in context 5 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x196A5884: ???
==14353==    by 0x1968FE16: ???
==14353==    by 0x1964495A: ???
==14353==    by 0x17E099C6: fi_getinfo@@FABRIC_1.3 (in /opt/intel/oneapi/mpi/2021.5.1/libfabric/lib/libfabric.so.1)
==14353==    by 0xEEC1166: MPIDI_OFI_mpi_init_hook (ofi_init.c:1501)
==14353==    by 0xEA109DC: MPID_Init (ch4_init.c:1307)
==14353==    by 0xED29D1C: MPIR_Init_thread (initthread.c:142)
==14353==    by 0xED29D1C: PMPI_Init_thread (initthread.c:280)
==14353==    by 0xC2EDDD8: PetscInitialize.part.0 (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405A4E: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 8 errors in context 6 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x4851896: memcpy at GLIBC_2.2.5 (in /usr/libexec/valgrind/vgpreload_memcheck-amd64-linux.so)
==14353==    by 0x18E31F14: ???
==14353==    by 0xEEB6568: fi_cq_readerr (fi_eq.h:397)
==14353==    by 0xEEB6568: MPIDI_OFI_handle_cq_error (ofi_events.c:977)
==14353==    by 0xEED0BDF: MPIDI_OFI_progress (ofi_progress.c:44)
==14353==    by 0xEEB7150: MPIDI_OFI_mpi_finalize_hook (ofi_init.c:2218)
==14353==    by 0xEA0F05B: MPID_Finalize (ch4_init.c:1475)
==14353==    by 0xEB6C688: PMPI_Finalize (finalize.c:159)
==14353==    by 0xC2EF533: PetscFinalize (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405AA0: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0xEEB6520: MPIDI_OFI_handle_cq_error (ofi_events.c:964)
==14353== 
==14353== 
==14353== 8 errors in context 7 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x18E31E0B: ???
==14353==    by 0xEEB6568: fi_cq_readerr (fi_eq.h:397)
==14353==    by 0xEEB6568: MPIDI_OFI_handle_cq_error (ofi_events.c:977)
==14353==    by 0xEED0BDF: MPIDI_OFI_progress (ofi_progress.c:44)
==14353==    by 0xEEB7150: MPIDI_OFI_mpi_finalize_hook (ofi_init.c:2218)
==14353==    by 0xEA0F05B: MPID_Finalize (ch4_init.c:1475)
==14353==    by 0xEB6C688: PMPI_Finalize (finalize.c:159)
==14353==    by 0xC2EF533: PetscFinalize (in /opt/petsc/lib/libpetsc.so.3.016.3)
==14353==    by 0x405AA0: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0xEEB6520: MPIDI_OFI_handle_cq_error (ofi_events.c:964)
==14353== 
==14353== 
==14353== 125 errors in context 8 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41399A: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 9 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413983: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 10 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41396C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 11 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413955: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 12 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41393E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 13 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413927: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 14 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413910: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 15 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x41057F: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138F6: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40F3A0: test_ts_arma_with_pure_petsc_preconfigured_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 16 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138BA: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 17 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x4138A3: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 18 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41388C: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 19 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413875: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 20 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x41385E: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 21 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413847: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 22 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413830: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== 
==14353== 125 errors in context 23 of 153:
==14353== Conditional jump or move depends on uninitialised value(s)
==14353==    at 0x40D669: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x413816: test_RK4_solvers_clean(unsigned long, unsigned long, unsigned long, bool) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==    by 0x405A9B: main (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353==  Uninitialised value was created by a stack allocation
==14353==    at 0x40CFAD: test_ts_arma_clean(unsigned long, unsigned long, arma::Col<std::complex<double> > const&, arma::Col<std::complex<double> >&, double, double, double) [clone .constprop.0] (in /home/roland/Dokumente/C++-Projekte/armadillo_with_PETSc/bin/armadillo_with_PETSc)
==14353== 
==14353== ERROR SUMMARY: 2151 errors from 153 contexts (suppressed: 0 from 0)


More information about the petsc-users mailing list