├── .gitmodules ├── AUTHORS ├── CHANGES ├── INSTALL.md ├── LICENSE ├── README.md ├── doc ├── MC++.dox ├── MC++.txt └── fig │ ├── CM-1D.g │ ├── CM-1D.out │ ├── CM-1D.png │ ├── Chebyshev_model.aux │ ├── Chebyshev_model.dvi │ ├── Chebyshev_model.eps │ ├── Chebyshev_model.log │ ├── Chebyshev_model.png │ ├── Chebyshev_model.ps │ ├── Chebyshev_model.tex │ ├── Chebyshevmodel.eps │ ├── Chebyshevmodel.fig │ ├── ELL-2D.png │ ├── F.png │ ├── F0.png │ ├── FTE.png │ ├── F_TAD.png │ ├── ISM-2D.png │ ├── MC-1D.g │ ├── MC-1D.out │ ├── MC-1D.png │ ├── MC-1D_linearize.png │ ├── MC-1D_relax.png │ ├── MC-TM-2D.png │ ├── MCTM-1D.png │ ├── McCormick_relax.aux │ ├── McCormick_relax.dvi │ ├── McCormick_relax.eps │ ├── McCormick_relax.log │ ├── McCormick_relax.png │ ├── McCormick_relax.ps │ ├── McCormick_relax.tex │ ├── McCormickrelax.eps │ ├── McCormickrelax.fig │ ├── OAcvx_strategy.png │ ├── PWCSM-2D.g │ ├── PWCSM-2D.out │ ├── PWCSM-2D.png │ ├── PWCSM2-2D.out │ ├── PWLSM-2D.g │ ├── PWLSM-2D.out │ ├── PWLSM-2D.png │ ├── Quadratization_algo.png │ ├── SB-2D.g │ ├── SB-2D.out │ ├── SB-2D_function.png │ ├── SB-2D_spectral.png │ ├── TM+MCTM-1D.png │ ├── TM-1D.png │ ├── TM-2D.png │ ├── TM-MC-1D.g │ ├── TM-MC-1D.out │ ├── TM-MC-2D.png │ ├── Taylor_model.aux │ ├── Taylor_model.dvi │ ├── Taylor_model.eps │ ├── Taylor_model.log │ ├── Taylor_model.png │ ├── Taylor_model.ps │ ├── Taylor_model.tex │ ├── Taylormodel.eps │ ├── Taylormodel.fig │ ├── dF1dX3_BAD.png │ ├── dF1dX3_FAD.png │ ├── dFdX_BAD.png │ ├── dFdX_FAD.png │ └── exm_uni.png ├── src ├── 3rdparty │ ├── boost │ │ ├── Makefile │ │ ├── remez.cpp │ │ ├── remez.hpp │ │ └── solve.hpp │ ├── cpplapack-2015.05.11-1 │ │ ├── README │ │ ├── benchmark │ │ │ ├── clean │ │ │ ├── do │ │ │ ├── double_copy │ │ │ │ └── main.cpp │ │ │ ├── double_plus │ │ │ │ └── main.cpp │ │ │ ├── double_solve │ │ │ │ └── main.cpp │ │ │ ├── double_times │ │ │ │ └── main.cpp │ │ │ └── double_zero │ │ │ │ └── main.cpp │ │ ├── contrib │ │ │ ├── BiCG │ │ │ │ └── main.cpp │ │ │ ├── BiCGstab │ │ │ │ └── main.cpp │ │ │ ├── CG │ │ │ │ └── main.cpp │ │ │ ├── DILU-CG │ │ │ │ └── main.cpp │ │ │ ├── GMRES │ │ │ │ ├── A8.dge │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.g++ │ │ │ │ ├── b8.dco │ │ │ │ └── main.cpp │ │ │ ├── MINRES │ │ │ │ └── main.cpp │ │ │ ├── QMR │ │ │ │ └── main.cpp │ │ │ ├── SOR │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.g++ │ │ │ │ └── main.cpp │ │ │ ├── SYMMLQ │ │ │ │ └── main.cpp │ │ │ ├── Subspace │ │ │ │ ├── K6.dssmatrix │ │ │ │ └── main.cpp │ │ │ ├── clean │ │ │ ├── dge2png │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.g++ │ │ │ │ └── main.cpp │ │ │ └── dge2vtk │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.g++ │ │ │ │ └── main.cpp │ │ ├── doc │ │ │ ├── Doxyfile │ │ │ ├── clean │ │ │ ├── do │ │ │ ├── fullclean │ │ │ ├── image │ │ │ │ ├── bandmatrix.eps │ │ │ │ ├── bandmatrix.obj │ │ │ │ ├── bandmatrix.png │ │ │ │ ├── dssmatrix-array.eps │ │ │ │ ├── dssmatrix-array.obj │ │ │ │ ├── dssmatrix-del.eps │ │ │ │ ├── dssmatrix-del.obj │ │ │ │ ├── dssmatrix-put.eps │ │ │ │ ├── dssmatrix-put.obj │ │ │ │ └── tmpmodel.obj │ │ │ ├── main_page │ │ │ │ ├── Japanese.html │ │ │ │ └── MainPage.html │ │ │ └── related_pages │ │ │ │ ├── File_Format.html │ │ │ │ ├── RelatedPages.html │ │ │ │ ├── Smart-Temporary.html │ │ │ │ └── Sparse_Matrix.html │ │ ├── include │ │ │ ├── _dcovector- │ │ │ │ ├── _dcovector-_dcovector.hpp │ │ │ │ ├── _dcovector-_dgbmatrix.hpp │ │ │ │ ├── _dcovector-_dgematrix.hpp │ │ │ │ ├── _dcovector-_dgsmatrix.hpp │ │ │ │ ├── _dcovector-_drovector.hpp │ │ │ │ ├── _dcovector-_dsymatrix.hpp │ │ │ │ ├── _dcovector-calc.hpp │ │ │ │ ├── _dcovector-cast.hpp │ │ │ │ ├── _dcovector-constructor.hpp │ │ │ │ ├── _dcovector-dcovector.hpp │ │ │ │ ├── _dcovector-dgbmatrix.hpp │ │ │ │ ├── _dcovector-dgematrix.hpp │ │ │ │ ├── _dcovector-dgsmatrix.hpp │ │ │ │ ├── _dcovector-double.hpp │ │ │ │ ├── _dcovector-drovector.hpp │ │ │ │ ├── _dcovector-dsymatrix.hpp │ │ │ │ ├── _dcovector-io.hpp │ │ │ │ ├── _dcovector-misc.hpp │ │ │ │ ├── _dcovector-unary.hpp │ │ │ │ └── _dcovector.hpp │ │ │ ├── _dgbmatrix- │ │ │ │ ├── _dgbmatrix-_dcovector.hpp │ │ │ │ ├── _dgbmatrix-_dgbmatrix.hpp │ │ │ │ ├── _dgbmatrix-_dgematrix.hpp │ │ │ │ ├── _dgbmatrix-_dgsmatrix.hpp │ │ │ │ ├── _dgbmatrix-_drovector.hpp │ │ │ │ ├── _dgbmatrix-_dsymatrix.hpp │ │ │ │ ├── _dgbmatrix-calc.hpp │ │ │ │ ├── _dgbmatrix-cast.hpp │ │ │ │ ├── _dgbmatrix-constructor.hpp │ │ │ │ ├── _dgbmatrix-dcovector.hpp │ │ │ │ ├── _dgbmatrix-dgbmatrix.hpp │ │ │ │ ├── _dgbmatrix-dgematrix.hpp │ │ │ │ ├── _dgbmatrix-dgsmatrix.hpp │ │ │ │ ├── _dgbmatrix-double.hpp │ │ │ │ ├── _dgbmatrix-drovector.hpp │ │ │ │ ├── _dgbmatrix-dsymatrix.hpp │ │ │ │ ├── _dgbmatrix-io.hpp │ │ │ │ ├── _dgbmatrix-misc.hpp │ │ │ │ ├── _dgbmatrix-unary.hpp │ │ │ │ └── _dgbmatrix.hpp │ │ │ ├── _dgematrix- │ │ │ │ ├── _dgematrix-_dcovector.hpp │ │ │ │ ├── _dgematrix-_dgbmatrix.hpp │ │ │ │ ├── _dgematrix-_dgematrix.hpp │ │ │ │ ├── _dgematrix-_dgsmatrix.hpp │ │ │ │ ├── _dgematrix-_drovector.hpp │ │ │ │ ├── _dgematrix-_dsymatrix.hpp │ │ │ │ ├── _dgematrix-calc.hpp │ │ │ │ ├── _dgematrix-cast.hpp │ │ │ │ ├── _dgematrix-constructor.hpp │ │ │ │ ├── _dgematrix-dcovector.hpp │ │ │ │ ├── _dgematrix-dgbmatrix.hpp │ │ │ │ ├── _dgematrix-dgematrix.hpp │ │ │ │ ├── _dgematrix-dgsmatrix.hpp │ │ │ │ ├── _dgematrix-double.hpp │ │ │ │ ├── _dgematrix-drovector.hpp │ │ │ │ ├── _dgematrix-dssmatrix.hpp │ │ │ │ ├── _dgematrix-dsymatrix.hpp │ │ │ │ ├── _dgematrix-io.hpp │ │ │ │ ├── _dgematrix-misc.hpp │ │ │ │ ├── _dgematrix-unary.hpp │ │ │ │ └── _dgematrix.hpp │ │ │ ├── _dgsmatrix- │ │ │ │ ├── _dgsmatrix-_dcovector.hpp │ │ │ │ ├── _dgsmatrix-_dgbmatrix.hpp │ │ │ │ ├── _dgsmatrix-_dgematrix.hpp │ │ │ │ ├── _dgsmatrix-_dgsmatrix.hpp │ │ │ │ ├── _dgsmatrix-_drovector.hpp │ │ │ │ ├── _dgsmatrix-_dsymatrix.hpp │ │ │ │ ├── _dgsmatrix-calc.hpp │ │ │ │ ├── _dgsmatrix-cast.hpp │ │ │ │ ├── _dgsmatrix-constructor.hpp │ │ │ │ ├── _dgsmatrix-dcovector.hpp │ │ │ │ ├── _dgsmatrix-dgbmatrix.hpp │ │ │ │ ├── _dgsmatrix-dgematrix.hpp │ │ │ │ ├── _dgsmatrix-dgsmatrix.hpp │ │ │ │ ├── _dgsmatrix-double.hpp │ │ │ │ ├── _dgsmatrix-drovector.hpp │ │ │ │ ├── _dgsmatrix-dsymatrix.hpp │ │ │ │ ├── _dgsmatrix-io.hpp │ │ │ │ ├── _dgsmatrix-misc.hpp │ │ │ │ ├── _dgsmatrix-unary.hpp │ │ │ │ └── _dgsmatrix.hpp │ │ │ ├── _drovector- │ │ │ │ ├── _drovector-_dcovector.hpp │ │ │ │ ├── _drovector-_dgbmatrix.hpp │ │ │ │ ├── _drovector-_dgematrix.hpp │ │ │ │ ├── _drovector-_dgsmatrix.hpp │ │ │ │ ├── _drovector-_drovector.hpp │ │ │ │ ├── _drovector-_dssmatrix.hpp │ │ │ │ ├── _drovector-_dsymatrix.hpp │ │ │ │ ├── _drovector-calc.hpp │ │ │ │ ├── _drovector-cast.hpp │ │ │ │ ├── _drovector-constructor.hpp │ │ │ │ ├── _drovector-dcovector.hpp │ │ │ │ ├── _drovector-dgbmatrix.hpp │ │ │ │ ├── _drovector-dgematrix.hpp │ │ │ │ ├── _drovector-dgsmatrix.hpp │ │ │ │ ├── _drovector-double.hpp │ │ │ │ ├── _drovector-drovector.hpp │ │ │ │ ├── _drovector-dssmatrix.hpp │ │ │ │ ├── _drovector-dsymatrix.hpp │ │ │ │ ├── _drovector-io.hpp │ │ │ │ ├── _drovector-misc.hpp │ │ │ │ ├── _drovector-unary.hpp │ │ │ │ └── _drovector.hpp │ │ │ ├── _dssmatrix- │ │ │ │ ├── _dssmatrix-_dcovector.hpp │ │ │ │ ├── _dssmatrix-_dgbmatrix.hpp │ │ │ │ ├── _dssmatrix-_dgematrix.hpp │ │ │ │ ├── _dssmatrix-_drovector.hpp │ │ │ │ ├── _dssmatrix-_dssmatrix.hpp │ │ │ │ ├── _dssmatrix-_dsymatrix.hpp │ │ │ │ ├── _dssmatrix-calc.hpp │ │ │ │ ├── _dssmatrix-cast.hpp │ │ │ │ ├── _dssmatrix-constructor.hpp │ │ │ │ ├── _dssmatrix-dcovector.hpp │ │ │ │ ├── _dssmatrix-dgbmatrix.hpp │ │ │ │ ├── _dssmatrix-dgematrix.hpp │ │ │ │ ├── _dssmatrix-double.hpp │ │ │ │ ├── _dssmatrix-drovector.hpp │ │ │ │ ├── _dssmatrix-dssmatrix.hpp │ │ │ │ ├── _dssmatrix-dsymatrix.hpp │ │ │ │ ├── _dssmatrix-io.hpp │ │ │ │ ├── _dssmatrix-misc.hpp │ │ │ │ ├── _dssmatrix-unary.hpp │ │ │ │ └── _dssmatrix.hpp │ │ │ ├── _dsymatrix- │ │ │ │ ├── _dsymatrix-_dcovector.hpp │ │ │ │ ├── _dsymatrix-_dgbmatrix.hpp │ │ │ │ ├── _dsymatrix-_dgematrix.hpp │ │ │ │ ├── _dsymatrix-_dgsmatrix.hpp │ │ │ │ ├── _dsymatrix-_drovector.hpp │ │ │ │ ├── _dsymatrix-_dsymatrix.hpp │ │ │ │ ├── _dsymatrix-calc.hpp │ │ │ │ ├── _dsymatrix-cast.hpp │ │ │ │ ├── _dsymatrix-constructor.hpp │ │ │ │ ├── _dsymatrix-dcovector.hpp │ │ │ │ ├── _dsymatrix-dgbmatrix.hpp │ │ │ │ ├── _dsymatrix-dgematrix.hpp │ │ │ │ ├── _dsymatrix-dgsmatrix.hpp │ │ │ │ ├── _dsymatrix-double.hpp │ │ │ │ ├── _dsymatrix-drovector.hpp │ │ │ │ ├── _dsymatrix-dsymatrix.hpp │ │ │ │ ├── _dsymatrix-io.hpp │ │ │ │ ├── _dsymatrix-misc.hpp │ │ │ │ ├── _dsymatrix-unary.hpp │ │ │ │ └── _dsymatrix.hpp │ │ │ ├── _zcovector- │ │ │ │ ├── _zcovector-_zcovector.hpp │ │ │ │ ├── _zcovector-_zgbmatrix.hpp │ │ │ │ ├── _zcovector-_zgematrix.hpp │ │ │ │ ├── _zcovector-_zgsmatrix.hpp │ │ │ │ ├── _zcovector-_zhematrix.hpp │ │ │ │ ├── _zcovector-_zhsmatrix.hpp │ │ │ │ ├── _zcovector-_zrovector.hpp │ │ │ │ ├── _zcovector-_zssmatrix.hpp │ │ │ │ ├── _zcovector-calc.hpp │ │ │ │ ├── _zcovector-complex.hpp │ │ │ │ ├── _zcovector-constructor.hpp │ │ │ │ ├── _zcovector-double.hpp │ │ │ │ ├── _zcovector-io.hpp │ │ │ │ ├── _zcovector-misc.hpp │ │ │ │ ├── _zcovector-unary.hpp │ │ │ │ ├── _zcovector-zcovector.hpp │ │ │ │ ├── _zcovector-zgbmatrix.hpp │ │ │ │ ├── _zcovector-zgematrix.hpp │ │ │ │ ├── _zcovector-zgsmatrix.hpp │ │ │ │ ├── _zcovector-zhematrix.hpp │ │ │ │ ├── _zcovector-zhsmatrix.hpp │ │ │ │ ├── _zcovector-zrovector.hpp │ │ │ │ ├── _zcovector-zssmatrix.hpp │ │ │ │ └── _zcovector.hpp │ │ │ ├── _zgbmatrix- │ │ │ │ ├── _zgbmatrix-_zcovector.hpp │ │ │ │ ├── _zgbmatrix-_zgbmatrix.hpp │ │ │ │ ├── _zgbmatrix-_zgematrix.hpp │ │ │ │ ├── _zgbmatrix-_zhematrix.hpp │ │ │ │ ├── _zgbmatrix-_zrovector.hpp │ │ │ │ ├── _zgbmatrix-_zssmatrix.hpp │ │ │ │ ├── _zgbmatrix-calc.hpp │ │ │ │ ├── _zgbmatrix-cast.hpp │ │ │ │ ├── _zgbmatrix-complex.hpp │ │ │ │ ├── _zgbmatrix-constructor.hpp │ │ │ │ ├── _zgbmatrix-double.hpp │ │ │ │ ├── _zgbmatrix-io.hpp │ │ │ │ ├── _zgbmatrix-misc.hpp │ │ │ │ ├── _zgbmatrix-unary.hpp │ │ │ │ ├── _zgbmatrix-zcovector.hpp │ │ │ │ ├── _zgbmatrix-zgbmatrix.hpp │ │ │ │ ├── _zgbmatrix-zgematrix.hpp │ │ │ │ ├── _zgbmatrix-zhematrix.hpp │ │ │ │ ├── _zgbmatrix-zrovector.hpp │ │ │ │ ├── _zgbmatrix-zssmatrix.hpp │ │ │ │ └── _zgbmatrix.hpp │ │ │ ├── _zgematrix- │ │ │ │ ├── _zgematrix-_zcovector.hpp │ │ │ │ ├── _zgematrix-_zgbmatrix.hpp │ │ │ │ ├── _zgematrix-_zgematrix.hpp │ │ │ │ ├── _zgematrix-_zgsmatrix.hpp │ │ │ │ ├── _zgematrix-_zhematrix.hpp │ │ │ │ ├── _zgematrix-_zrovector.hpp │ │ │ │ ├── _zgematrix-_zssmatrix.hpp │ │ │ │ ├── _zgematrix-calc.hpp │ │ │ │ ├── _zgematrix-cast.hpp │ │ │ │ ├── _zgematrix-complex.hpp │ │ │ │ ├── _zgematrix-constructor.hpp │ │ │ │ ├── _zgematrix-double.hpp │ │ │ │ ├── _zgematrix-io.hpp │ │ │ │ ├── _zgematrix-misc.hpp │ │ │ │ ├── _zgematrix-unary.hpp │ │ │ │ ├── _zgematrix-zcovector.hpp │ │ │ │ ├── _zgematrix-zgbmatrix.hpp │ │ │ │ ├── _zgematrix-zgematrix.hpp │ │ │ │ ├── _zgematrix-zgsmatrix.hpp │ │ │ │ ├── _zgematrix-zhematrix.hpp │ │ │ │ ├── _zgematrix-zrovector.hpp │ │ │ │ ├── _zgematrix-zssmatrix.hpp │ │ │ │ └── _zgematrix.hpp │ │ │ ├── _zgsmatrix- │ │ │ │ ├── _zgsmatrix-_zcovector.hpp │ │ │ │ ├── _zgsmatrix-_zgbmatrix.hpp │ │ │ │ ├── _zgsmatrix-_zgematrix.hpp │ │ │ │ ├── _zgsmatrix-_zgsmatrix.hpp │ │ │ │ ├── _zgsmatrix-_zhematrix.hpp │ │ │ │ ├── _zgsmatrix-_zrovector.hpp │ │ │ │ ├── _zgsmatrix-calc.hpp │ │ │ │ ├── _zgsmatrix-cast.hpp │ │ │ │ ├── _zgsmatrix-complex.hpp │ │ │ │ ├── _zgsmatrix-constructor.hpp │ │ │ │ ├── _zgsmatrix-double.hpp │ │ │ │ ├── _zgsmatrix-io.hpp │ │ │ │ ├── _zgsmatrix-misc.hpp │ │ │ │ ├── _zgsmatrix-unary.hpp │ │ │ │ ├── _zgsmatrix-zcovector.hpp │ │ │ │ ├── _zgsmatrix-zgbmatrix.hpp │ │ │ │ ├── _zgsmatrix-zgematrix.hpp │ │ │ │ ├── _zgsmatrix-zgsmatrix.hpp │ │ │ │ ├── _zgsmatrix-zhematrix.hpp │ │ │ │ ├── _zgsmatrix-zrovector.hpp │ │ │ │ └── _zgsmatrix.hpp │ │ │ ├── _zhematrix- │ │ │ │ ├── _zhematrix-_zcovector.hpp │ │ │ │ ├── _zhematrix-_zgbmatrix.hpp │ │ │ │ ├── _zhematrix-_zgematrix.hpp │ │ │ │ ├── _zhematrix-_zhematrix.hpp │ │ │ │ ├── _zhematrix-_zrovector.hpp │ │ │ │ ├── _zhematrix-_zssmatrix.hpp │ │ │ │ ├── _zhematrix-calc.hpp │ │ │ │ ├── _zhematrix-cast.hpp │ │ │ │ ├── _zhematrix-complex.hpp │ │ │ │ ├── _zhematrix-constructor.hpp │ │ │ │ ├── _zhematrix-double.hpp │ │ │ │ ├── _zhematrix-io.hpp │ │ │ │ ├── _zhematrix-misc.hpp │ │ │ │ ├── _zhematrix-unary.hpp │ │ │ │ ├── _zhematrix-zcovector.hpp │ │ │ │ ├── _zhematrix-zgbmatrix.hpp │ │ │ │ ├── _zhematrix-zgematrix.hpp │ │ │ │ ├── _zhematrix-zhematrix.hpp │ │ │ │ ├── _zhematrix-zrovector.hpp │ │ │ │ ├── _zhematrix-zssmatrix.hpp │ │ │ │ └── _zhematrix.hpp │ │ │ ├── _zhsmatrix- │ │ │ │ ├── _zhsmatrix-_zcovector.hpp │ │ │ │ ├── _zhsmatrix-_zgbmatrix.hpp │ │ │ │ ├── _zhsmatrix-_zgematrix.hpp │ │ │ │ ├── _zhsmatrix-_zhematrix.hpp │ │ │ │ ├── _zhsmatrix-_zhsmatrix.hpp │ │ │ │ ├── _zhsmatrix-_zrovector.hpp │ │ │ │ ├── _zhsmatrix-calc.hpp │ │ │ │ ├── _zhsmatrix-cast.hpp │ │ │ │ ├── _zhsmatrix-complex.hpp │ │ │ │ ├── _zhsmatrix-constructor.hpp │ │ │ │ ├── _zhsmatrix-double.hpp │ │ │ │ ├── _zhsmatrix-io.hpp │ │ │ │ ├── _zhsmatrix-misc.hpp │ │ │ │ ├── _zhsmatrix-unary.hpp │ │ │ │ ├── _zhsmatrix-zcovector.hpp │ │ │ │ ├── _zhsmatrix-zgbmatrix.hpp │ │ │ │ ├── _zhsmatrix-zgematrix.hpp │ │ │ │ ├── _zhsmatrix-zhematrix.hpp │ │ │ │ ├── _zhsmatrix-zhsmatrix.hpp │ │ │ │ ├── _zhsmatrix-zrovector.hpp │ │ │ │ └── _zhsmatrix.hpp │ │ │ ├── _zrovector- │ │ │ │ ├── _zrovector-_zcovector.hpp │ │ │ │ ├── _zrovector-_zgbmatrix.hpp │ │ │ │ ├── _zrovector-_zgematrix.hpp │ │ │ │ ├── _zrovector-_zgsmatrix.hpp │ │ │ │ ├── _zrovector-_zhematrix.hpp │ │ │ │ ├── _zrovector-_zhsmatrix.hpp │ │ │ │ ├── _zrovector-_zrovector.hpp │ │ │ │ ├── _zrovector-calc.hpp │ │ │ │ ├── _zrovector-complex.hpp │ │ │ │ ├── _zrovector-constructor.hpp │ │ │ │ ├── _zrovector-double.hpp │ │ │ │ ├── _zrovector-io.hpp │ │ │ │ ├── _zrovector-misc.hpp │ │ │ │ ├── _zrovector-unary.hpp │ │ │ │ ├── _zrovector-zcovector.hpp │ │ │ │ ├── _zrovector-zgbmatrix.hpp │ │ │ │ ├── _zrovector-zgematrix.hpp │ │ │ │ ├── _zrovector-zgsmatrix.hpp │ │ │ │ ├── _zrovector-zhematrix.hpp │ │ │ │ ├── _zrovector-zhsmatrix.hpp │ │ │ │ ├── _zrovector-zrovector.hpp │ │ │ │ └── _zrovector.hpp │ │ │ ├── complex- │ │ │ │ ├── complex-_zcovector.hpp │ │ │ │ ├── complex-_zgbmatrix.hpp │ │ │ │ ├── complex-_zgematrix.hpp │ │ │ │ ├── complex-_zgsmatrix.hpp │ │ │ │ ├── complex-_zhematrix.hpp │ │ │ │ ├── complex-_zhsmatrix.hpp │ │ │ │ ├── complex-_zrovector.hpp │ │ │ │ ├── complex-zcovector.hpp │ │ │ │ ├── complex-zgbmatrix.hpp │ │ │ │ ├── complex-zgematrix.hpp │ │ │ │ ├── complex-zgsmatrix.hpp │ │ │ │ ├── complex-zhematrix.hpp │ │ │ │ ├── complex-zhsmatrix.hpp │ │ │ │ └── complex-zrovector.hpp │ │ │ ├── cpplapack.h │ │ │ ├── dcovector- │ │ │ │ ├── dcovector-_dcovector.hpp │ │ │ │ ├── dcovector-_dgbmatrix.hpp │ │ │ │ ├── dcovector-_dgematrix.hpp │ │ │ │ ├── dcovector-_dgsmatrix.hpp │ │ │ │ ├── dcovector-_drovector.hpp │ │ │ │ ├── dcovector-_dsymatrix.hpp │ │ │ │ ├── dcovector-calc.hpp │ │ │ │ ├── dcovector-cast.hpp │ │ │ │ ├── dcovector-constructor.hpp │ │ │ │ ├── dcovector-dcovector.hpp │ │ │ │ ├── dcovector-dgbmatrix.hpp │ │ │ │ ├── dcovector-dgematrix.hpp │ │ │ │ ├── dcovector-dgsmatrix.hpp │ │ │ │ ├── dcovector-double.hpp │ │ │ │ ├── dcovector-drovector.hpp │ │ │ │ ├── dcovector-dsymatrix.hpp │ │ │ │ ├── dcovector-io.hpp │ │ │ │ ├── dcovector-misc.hpp │ │ │ │ ├── dcovector-unary.hpp │ │ │ │ └── dcovector.hpp │ │ │ ├── dgbmatrix- │ │ │ │ ├── dgbmatrix-_dcovector.hpp │ │ │ │ ├── dgbmatrix-_dgbmatrix.hpp │ │ │ │ ├── dgbmatrix-_dgematrix.hpp │ │ │ │ ├── dgbmatrix-_dgsmatrix.hpp │ │ │ │ ├── dgbmatrix-_drovector.hpp │ │ │ │ ├── dgbmatrix-_dsymatrix.hpp │ │ │ │ ├── dgbmatrix-calc.hpp │ │ │ │ ├── dgbmatrix-cast.hpp │ │ │ │ ├── dgbmatrix-constructor.hpp │ │ │ │ ├── dgbmatrix-dcovector.hpp │ │ │ │ ├── dgbmatrix-dgbmatrix.hpp │ │ │ │ ├── dgbmatrix-dgematrix.hpp │ │ │ │ ├── dgbmatrix-dgsmatrix.hpp │ │ │ │ ├── dgbmatrix-double.hpp │ │ │ │ ├── dgbmatrix-drovector.hpp │ │ │ │ ├── dgbmatrix-dsymatrix.hpp │ │ │ │ ├── dgbmatrix-io.hpp │ │ │ │ ├── dgbmatrix-lapack.hpp │ │ │ │ ├── dgbmatrix-misc.hpp │ │ │ │ ├── dgbmatrix-unary.hpp │ │ │ │ └── dgbmatrix.hpp │ │ │ ├── dgematrix- │ │ │ │ ├── dgematrix-_dcovector.hpp │ │ │ │ ├── dgematrix-_dgbmatrix.hpp │ │ │ │ ├── dgematrix-_dgematrix.hpp │ │ │ │ ├── dgematrix-_dgsmatrix.hpp │ │ │ │ ├── dgematrix-_drovector.hpp │ │ │ │ ├── dgematrix-_dsymatrix.hpp │ │ │ │ ├── dgematrix-calc.hpp │ │ │ │ ├── dgematrix-cast.hpp │ │ │ │ ├── dgematrix-constructor.hpp │ │ │ │ ├── dgematrix-dcovector.hpp │ │ │ │ ├── dgematrix-dgbmatrix.hpp │ │ │ │ ├── dgematrix-dgematrix.hpp │ │ │ │ ├── dgematrix-dgsmatrix.hpp │ │ │ │ ├── dgematrix-double.hpp │ │ │ │ ├── dgematrix-drovector.hpp │ │ │ │ ├── dgematrix-dsymatrix.hpp │ │ │ │ ├── dgematrix-io.hpp │ │ │ │ ├── dgematrix-lapack.hpp │ │ │ │ ├── dgematrix-misc.hpp │ │ │ │ ├── dgematrix-unary.hpp │ │ │ │ └── dgematrix.hpp │ │ │ ├── dgrmatrix- │ │ │ │ ├── dgrmatrix-_dcovector.hpp │ │ │ │ ├── dgrmatrix-calc.hpp │ │ │ │ ├── dgrmatrix-cast.hpp │ │ │ │ ├── dgrmatrix-constructor.hpp │ │ │ │ ├── dgrmatrix-dcovector.hpp │ │ │ │ ├── dgrmatrix-double.hpp │ │ │ │ ├── dgrmatrix-io.hpp │ │ │ │ ├── dgrmatrix-misc.hpp │ │ │ │ ├── dgrmatrix-pardiso.hpp │ │ │ │ ├── dgrmatrix-rci.hpp │ │ │ │ ├── dgrmatrix-unary.hpp │ │ │ │ └── dgrmatrix.hpp │ │ │ ├── dgsmatrix- │ │ │ │ ├── dgsmatrix-_dcovector.hpp │ │ │ │ ├── dgsmatrix-_dgbmatrix.hpp │ │ │ │ ├── dgsmatrix-_dgematrix.hpp │ │ │ │ ├── dgsmatrix-_dgsmatrix.hpp │ │ │ │ ├── dgsmatrix-_drovector.hpp │ │ │ │ ├── dgsmatrix-_dsymatrix.hpp │ │ │ │ ├── dgsmatrix-calc.hpp │ │ │ │ ├── dgsmatrix-cast.hpp │ │ │ │ ├── dgsmatrix-constructor.hpp │ │ │ │ ├── dgsmatrix-dcovector.hpp │ │ │ │ ├── dgsmatrix-dgbmatrix.hpp │ │ │ │ ├── dgsmatrix-dgematrix.hpp │ │ │ │ ├── dgsmatrix-dgsmatrix.hpp │ │ │ │ ├── dgsmatrix-double.hpp │ │ │ │ ├── dgsmatrix-drovector.hpp │ │ │ │ ├── dgsmatrix-dsymatrix.hpp │ │ │ │ ├── dgsmatrix-io.hpp │ │ │ │ ├── dgsmatrix-misc.hpp │ │ │ │ ├── dgsmatrix-pardiso.hpp │ │ │ │ ├── dgsmatrix-unary.hpp │ │ │ │ └── dgsmatrix.hpp │ │ │ ├── double- │ │ │ │ ├── double-_dcovector.hpp │ │ │ │ ├── double-_dgbmatrix.hpp │ │ │ │ ├── double-_dgematrix.hpp │ │ │ │ ├── double-_dgsmatrix.hpp │ │ │ │ ├── double-_drovector.hpp │ │ │ │ ├── double-_dssmatrix.hpp │ │ │ │ ├── double-_dsymatrix.hpp │ │ │ │ ├── double-_zcovector.hpp │ │ │ │ ├── double-_zgbmatrix.hpp │ │ │ │ ├── double-_zgematrix.hpp │ │ │ │ ├── double-_zgsmatrix.hpp │ │ │ │ ├── double-_zhematrix.hpp │ │ │ │ ├── double-_zhsmatrix.hpp │ │ │ │ ├── double-_zrovector.hpp │ │ │ │ ├── double-dcovector.hpp │ │ │ │ ├── double-dgbmatrix.hpp │ │ │ │ ├── double-dgematrix.hpp │ │ │ │ ├── double-dgrmatrix.hpp │ │ │ │ ├── double-dgsmatrix.hpp │ │ │ │ ├── double-drovector.hpp │ │ │ │ ├── double-dssmatrix.hpp │ │ │ │ ├── double-dsymatrix.hpp │ │ │ │ ├── double-zcovector.hpp │ │ │ │ ├── double-zgbmatrix.hpp │ │ │ │ ├── double-zgematrix.hpp │ │ │ │ ├── double-zgsmatrix.hpp │ │ │ │ ├── double-zhematrix.hpp │ │ │ │ ├── double-zhsmatrix.hpp │ │ │ │ └── double-zrovector.hpp │ │ │ ├── drovector- │ │ │ │ ├── drovector-_dcovector.hpp │ │ │ │ ├── drovector-_dgbmatrix.hpp │ │ │ │ ├── drovector-_dgematrix.hpp │ │ │ │ ├── drovector-_dgsmatrix.hpp │ │ │ │ ├── drovector-_drovector.hpp │ │ │ │ ├── drovector-_dssmatrix.hpp │ │ │ │ ├── drovector-_dsymatrix.hpp │ │ │ │ ├── drovector-calc.hpp │ │ │ │ ├── drovector-cast.hpp │ │ │ │ ├── drovector-constructor.hpp │ │ │ │ ├── drovector-dcovector.hpp │ │ │ │ ├── drovector-dgbmatrix.hpp │ │ │ │ ├── drovector-dgematrix.hpp │ │ │ │ ├── drovector-dgsmatrix.hpp │ │ │ │ ├── drovector-double.hpp │ │ │ │ ├── drovector-drovector.hpp │ │ │ │ ├── drovector-dssmatrix.hpp │ │ │ │ ├── drovector-dsymatrix.hpp │ │ │ │ ├── drovector-io.hpp │ │ │ │ ├── drovector-misc.hpp │ │ │ │ ├── drovector-unary.hpp │ │ │ │ └── drovector.hpp │ │ │ ├── dssmatrix- │ │ │ │ ├── dssmatrix-_dcovector.hpp │ │ │ │ ├── dssmatrix-_dgbmatrix.hpp │ │ │ │ ├── dssmatrix-_dgematrix.hpp │ │ │ │ ├── dssmatrix-_drovector.hpp │ │ │ │ ├── dssmatrix-_dssmatrix.hpp │ │ │ │ ├── dssmatrix-_dsymatrix.hpp │ │ │ │ ├── dssmatrix-calc.hpp │ │ │ │ ├── dssmatrix-cast.hpp │ │ │ │ ├── dssmatrix-constructor.hpp │ │ │ │ ├── dssmatrix-dcovector.hpp │ │ │ │ ├── dssmatrix-dgbmatrix.hpp │ │ │ │ ├── dssmatrix-dgematrix.hpp │ │ │ │ ├── dssmatrix-double.hpp │ │ │ │ ├── dssmatrix-drovector.hpp │ │ │ │ ├── dssmatrix-dssmatrix.hpp │ │ │ │ ├── dssmatrix-dsymatrix.hpp │ │ │ │ ├── dssmatrix-io.hpp │ │ │ │ ├── dssmatrix-misc.hpp │ │ │ │ ├── dssmatrix-pardiso.hpp │ │ │ │ ├── dssmatrix-unary.hpp │ │ │ │ └── dssmatrix.hpp │ │ │ ├── dsymatrix- │ │ │ │ ├── dsymatrix-_dcovector.hpp │ │ │ │ ├── dsymatrix-_dgbmatrix.hpp │ │ │ │ ├── dsymatrix-_dgematrix.hpp │ │ │ │ ├── dsymatrix-_dgsmatrix.hpp │ │ │ │ ├── dsymatrix-_drovector.hpp │ │ │ │ ├── dsymatrix-_dsymatrix.hpp │ │ │ │ ├── dsymatrix-calc.hpp │ │ │ │ ├── dsymatrix-cast.hpp │ │ │ │ ├── dsymatrix-constructor.hpp │ │ │ │ ├── dsymatrix-dcovector.hpp │ │ │ │ ├── dsymatrix-dgbmatrix.hpp │ │ │ │ ├── dsymatrix-dgematrix.hpp │ │ │ │ ├── dsymatrix-dgsmatrix.hpp │ │ │ │ ├── dsymatrix-double.hpp │ │ │ │ ├── dsymatrix-drovector.hpp │ │ │ │ ├── dsymatrix-dsymatrix.hpp │ │ │ │ ├── dsymatrix-io.hpp │ │ │ │ ├── dsymatrix-lapack.hpp │ │ │ │ ├── dsymatrix-misc.hpp │ │ │ │ ├── dsymatrix-unary.hpp │ │ │ │ └── dsymatrix.hpp │ │ │ ├── misc │ │ │ │ ├── dcomponent.hpp │ │ │ │ ├── zcomponent.hpp │ │ │ │ └── zhecomplex.hpp │ │ │ ├── prototype │ │ │ │ ├── dblas.h │ │ │ │ ├── dlapack.h │ │ │ │ ├── mkl_blas.h │ │ │ │ ├── mkl_lapack.h │ │ │ │ ├── zblas.h │ │ │ │ └── zlapack.h │ │ │ ├── small │ │ │ │ ├── comple-small.hpp │ │ │ │ ├── dcovector_small-constructors.hpp │ │ │ │ ├── dcovector_small-functions.hpp │ │ │ │ ├── dcovector_small-specialized.hpp │ │ │ │ ├── dcovector_small.hpp │ │ │ │ ├── dgematrix_small-constructors.hpp │ │ │ │ ├── dgematrix_small-functions.hpp │ │ │ │ ├── dgematrix_small-specialized.hpp │ │ │ │ ├── dgematrix_small.hpp │ │ │ │ ├── double-small.hpp │ │ │ │ ├── drovector_small-constructors.hpp │ │ │ │ ├── drovector_small-functions.hpp │ │ │ │ ├── drovector_small-specialized.hpp │ │ │ │ ├── drovector_small.hpp │ │ │ │ ├── dsymatrix_small-constructors.hpp │ │ │ │ ├── dsymatrix_small-functions.hpp │ │ │ │ ├── dsymatrix_small-specialized.hpp │ │ │ │ ├── dsymatrix_small.hpp │ │ │ │ ├── zcovector_small-constructors.hpp │ │ │ │ ├── zcovector_small-functions.hpp │ │ │ │ ├── zcovector_small-specialized.hpp │ │ │ │ ├── zcovector_small.hpp │ │ │ │ ├── zgematrix_small-constructors.hpp │ │ │ │ ├── zgematrix_small-functions.hpp │ │ │ │ ├── zgematrix_small-specialized.hpp │ │ │ │ ├── zgematrix_small.hpp │ │ │ │ ├── zhematrix_small-constructors.hpp │ │ │ │ ├── zhematrix_small-functions.hpp │ │ │ │ ├── zhematrix_small-specialized.hpp │ │ │ │ ├── zhematrix_small.hpp │ │ │ │ ├── zrovector_small-constructors.hpp │ │ │ │ ├── zrovector_small-functions.hpp │ │ │ │ ├── zrovector_small-specialized.hpp │ │ │ │ └── zrovector_small.hpp │ │ │ ├── zcovector- │ │ │ │ ├── zcovector-_zcovector.hpp │ │ │ │ ├── zcovector-_zgbmatrix.hpp │ │ │ │ ├── zcovector-_zgematrix.hpp │ │ │ │ ├── zcovector-_zgsmatrix.hpp │ │ │ │ ├── zcovector-_zhematrix.hpp │ │ │ │ ├── zcovector-_zhsmatrix.hpp │ │ │ │ ├── zcovector-_zrovector.hpp │ │ │ │ ├── zcovector-_zssmatrix.hpp │ │ │ │ ├── zcovector-calc.hpp │ │ │ │ ├── zcovector-complex.hpp │ │ │ │ ├── zcovector-constructor.hpp │ │ │ │ ├── zcovector-double.hpp │ │ │ │ ├── zcovector-io.hpp │ │ │ │ ├── zcovector-misc.hpp │ │ │ │ ├── zcovector-unary.hpp │ │ │ │ ├── zcovector-zcovector.hpp │ │ │ │ ├── zcovector-zgbmatrix.hpp │ │ │ │ ├── zcovector-zgematrix.hpp │ │ │ │ ├── zcovector-zgsmatrix.hpp │ │ │ │ ├── zcovector-zhematrix.hpp │ │ │ │ ├── zcovector-zhsmatrix.hpp │ │ │ │ ├── zcovector-zrovector.hpp │ │ │ │ ├── zcovector-zssmatrix.hpp │ │ │ │ └── zcovector.hpp │ │ │ ├── zgbmatrix- │ │ │ │ ├── zgbmatrix-_zcovector.hpp │ │ │ │ ├── zgbmatrix-_zgbmatrix.hpp │ │ │ │ ├── zgbmatrix-_zgematrix.hpp │ │ │ │ ├── zgbmatrix-_zhematrix.hpp │ │ │ │ ├── zgbmatrix-_zrovector.hpp │ │ │ │ ├── zgbmatrix-_zssmatrix.hpp │ │ │ │ ├── zgbmatrix-calc.hpp │ │ │ │ ├── zgbmatrix-cast.hpp │ │ │ │ ├── zgbmatrix-complex.hpp │ │ │ │ ├── zgbmatrix-constructor.hpp │ │ │ │ ├── zgbmatrix-double.hpp │ │ │ │ ├── zgbmatrix-io.hpp │ │ │ │ ├── zgbmatrix-lapack.hpp │ │ │ │ ├── zgbmatrix-misc.hpp │ │ │ │ ├── zgbmatrix-unary.hpp │ │ │ │ ├── zgbmatrix-zcovector.hpp │ │ │ │ ├── zgbmatrix-zgbmatrix.hpp │ │ │ │ ├── zgbmatrix-zgematrix.hpp │ │ │ │ ├── zgbmatrix-zhematrix.hpp │ │ │ │ ├── zgbmatrix-zrovector.hpp │ │ │ │ ├── zgbmatrix-zssmatrix.hpp │ │ │ │ └── zgbmatrix.hpp │ │ │ ├── zgematrix- │ │ │ │ ├── zgematrix-_zcovector.hpp │ │ │ │ ├── zgematrix-_zgbmatrix.hpp │ │ │ │ ├── zgematrix-_zgematrix.hpp │ │ │ │ ├── zgematrix-_zgsmatrix.hpp │ │ │ │ ├── zgematrix-_zhematrix.hpp │ │ │ │ ├── zgematrix-_zrovector.hpp │ │ │ │ ├── zgematrix-_zssmatrix.hpp │ │ │ │ ├── zgematrix-calc.hpp │ │ │ │ ├── zgematrix-cast.hpp │ │ │ │ ├── zgematrix-complex.hpp │ │ │ │ ├── zgematrix-constructor.hpp │ │ │ │ ├── zgematrix-double.hpp │ │ │ │ ├── zgematrix-io.hpp │ │ │ │ ├── zgematrix-lapack.hpp │ │ │ │ ├── zgematrix-misc.hpp │ │ │ │ ├── zgematrix-unary.hpp │ │ │ │ ├── zgematrix-zcovector.hpp │ │ │ │ ├── zgematrix-zgbmatrix.hpp │ │ │ │ ├── zgematrix-zgematrix.hpp │ │ │ │ ├── zgematrix-zgsmatrix.hpp │ │ │ │ ├── zgematrix-zhematrix.hpp │ │ │ │ ├── zgematrix-zrovector.hpp │ │ │ │ ├── zgematrix-zssmatrix.hpp │ │ │ │ └── zgematrix.hpp │ │ │ ├── zgsmatrix- │ │ │ │ ├── zgsmatrix-_zcovector.hpp │ │ │ │ ├── zgsmatrix-_zgbmatrix.hpp │ │ │ │ ├── zgsmatrix-_zgematrix.hpp │ │ │ │ ├── zgsmatrix-_zgsmatrix.hpp │ │ │ │ ├── zgsmatrix-_zhematrix.hpp │ │ │ │ ├── zgsmatrix-_zrovector.hpp │ │ │ │ ├── zgsmatrix-calc.hpp │ │ │ │ ├── zgsmatrix-cast.hpp │ │ │ │ ├── zgsmatrix-complex.hpp │ │ │ │ ├── zgsmatrix-constructor.hpp │ │ │ │ ├── zgsmatrix-double.hpp │ │ │ │ ├── zgsmatrix-io.hpp │ │ │ │ ├── zgsmatrix-misc.hpp │ │ │ │ ├── zgsmatrix-unary.hpp │ │ │ │ ├── zgsmatrix-zcovector.hpp │ │ │ │ ├── zgsmatrix-zgbmatrix.hpp │ │ │ │ ├── zgsmatrix-zgematrix.hpp │ │ │ │ ├── zgsmatrix-zgsmatrix.hpp │ │ │ │ ├── zgsmatrix-zhematrix.hpp │ │ │ │ ├── zgsmatrix-zrovector.hpp │ │ │ │ └── zgsmatrix.hpp │ │ │ ├── zhematrix- │ │ │ │ ├── zhematrix-_zcovector.hpp │ │ │ │ ├── zhematrix-_zgbmatrix.hpp │ │ │ │ ├── zhematrix-_zgematrix.hpp │ │ │ │ ├── zhematrix-_zhematrix.hpp │ │ │ │ ├── zhematrix-_zrovector.hpp │ │ │ │ ├── zhematrix-_zssmatrix.hpp │ │ │ │ ├── zhematrix-calc.hpp │ │ │ │ ├── zhematrix-cast.hpp │ │ │ │ ├── zhematrix-complex.hpp │ │ │ │ ├── zhematrix-constructor.hpp │ │ │ │ ├── zhematrix-double.hpp │ │ │ │ ├── zhematrix-io.hpp │ │ │ │ ├── zhematrix-lapack.hpp │ │ │ │ ├── zhematrix-misc.hpp │ │ │ │ ├── zhematrix-unary.hpp │ │ │ │ ├── zhematrix-zcovector.hpp │ │ │ │ ├── zhematrix-zgbmatrix.hpp │ │ │ │ ├── zhematrix-zgematrix.hpp │ │ │ │ ├── zhematrix-zhematrix.hpp │ │ │ │ ├── zhematrix-zrovector.hpp │ │ │ │ ├── zhematrix-zssmatrix.hpp │ │ │ │ └── zhematrix.hpp │ │ │ ├── zhsmatrix- │ │ │ │ ├── zhsmatrix-_zcovector.hpp │ │ │ │ ├── zhsmatrix-_zgbmatrix.hpp │ │ │ │ ├── zhsmatrix-_zgematrix.hpp │ │ │ │ ├── zhsmatrix-_zhematrix.hpp │ │ │ │ ├── zhsmatrix-_zhsmatrix.hpp │ │ │ │ ├── zhsmatrix-_zrovector.hpp │ │ │ │ ├── zhsmatrix-calc.hpp │ │ │ │ ├── zhsmatrix-cast.hpp │ │ │ │ ├── zhsmatrix-complex.hpp │ │ │ │ ├── zhsmatrix-constructor.hpp │ │ │ │ ├── zhsmatrix-double.hpp │ │ │ │ ├── zhsmatrix-io.hpp │ │ │ │ ├── zhsmatrix-misc.hpp │ │ │ │ ├── zhsmatrix-unary.hpp │ │ │ │ ├── zhsmatrix-zcovector.hpp │ │ │ │ ├── zhsmatrix-zgbmatrix.hpp │ │ │ │ ├── zhsmatrix-zgematrix.hpp │ │ │ │ ├── zhsmatrix-zhematrix.hpp │ │ │ │ ├── zhsmatrix-zhsmatrix.hpp │ │ │ │ ├── zhsmatrix-zrovector.hpp │ │ │ │ └── zhsmatrix.hpp │ │ │ └── zrovector- │ │ │ │ ├── zrovector-_zcovector.hpp │ │ │ │ ├── zrovector-_zgbmatrix.hpp │ │ │ │ ├── zrovector-_zgematrix.hpp │ │ │ │ ├── zrovector-_zgsmatrix.hpp │ │ │ │ ├── zrovector-_zhematrix.hpp │ │ │ │ ├── zrovector-_zhsmatrix.hpp │ │ │ │ ├── zrovector-_zrovector.hpp │ │ │ │ ├── zrovector-calc.hpp │ │ │ │ ├── zrovector-complex.hpp │ │ │ │ ├── zrovector-constructor.hpp │ │ │ │ ├── zrovector-double.hpp │ │ │ │ ├── zrovector-io.hpp │ │ │ │ ├── zrovector-misc.hpp │ │ │ │ ├── zrovector-unary.hpp │ │ │ │ ├── zrovector-zcovector.hpp │ │ │ │ ├── zrovector-zgbmatrix.hpp │ │ │ │ ├── zrovector-zgematrix.hpp │ │ │ │ ├── zrovector-zgsmatrix.hpp │ │ │ │ ├── zrovector-zhematrix.hpp │ │ │ │ ├── zrovector-zhsmatrix.hpp │ │ │ │ ├── zrovector-zrovector.hpp │ │ │ │ └── zrovector.hpp │ │ ├── makefiles │ │ │ ├── Makefile │ │ │ ├── Makefile-icl │ │ │ ├── Makefile.g++ │ │ │ └── Makefile.icpc │ │ ├── packaging │ │ │ ├── deb │ │ │ │ ├── README │ │ │ │ ├── control │ │ │ │ └── mkdeb.sh │ │ │ ├── exe │ │ │ │ ├── README.txt │ │ │ │ ├── cpplapack.nsi │ │ │ │ └── stdint.h │ │ │ ├── rpm │ │ │ │ ├── cpplapack.spec │ │ │ │ └── mkrpm.sh │ │ │ └── tgz │ │ │ │ └── mktgz.sh │ │ └── test │ │ │ ├── clean │ │ │ ├── complex │ │ │ └── main.cpp │ │ │ ├── dcovector │ │ │ ├── dcovector-calc │ │ │ │ └── main.cpp │ │ │ ├── dcovector-constructor │ │ │ │ └── main.cpp │ │ │ ├── dcovector-dcovector │ │ │ │ └── main.cpp │ │ │ ├── dcovector-double │ │ │ │ └── main.cpp │ │ │ ├── dcovector-drovector │ │ │ │ └── main.cpp │ │ │ ├── dcovector-io │ │ │ │ └── main.cpp │ │ │ ├── dcovector-misc │ │ │ │ └── main.cpp │ │ │ └── dcovector-unary │ │ │ │ └── main.cpp │ │ │ ├── dgbmatrix │ │ │ ├── dgbmatrix-calc │ │ │ │ └── main.cpp │ │ │ ├── dgbmatrix-constructor │ │ │ │ └── main.cpp │ │ │ ├── dgbmatrix-dgbmatrix │ │ │ │ └── main.cpp │ │ │ ├── dgbmatrix-dgematrix │ │ │ │ └── main.cpp │ │ │ ├── dgbmatrix-double │ │ │ │ └── main.cpp │ │ │ ├── dgbmatrix-dsymatrix │ │ │ │ └── main.cpp │ │ │ ├── dgbmatrix-io │ │ │ │ └── main.cpp │ │ │ ├── dgbmatrix-lapack │ │ │ │ └── main.cpp │ │ │ └── dgbmatrix-misc │ │ │ │ └── main.cpp │ │ │ ├── dgematrix │ │ │ ├── dgematrix-calc │ │ │ │ └── main.cpp │ │ │ ├── dgematrix-constructor │ │ │ │ └── main.cpp │ │ │ ├── dgematrix-dcovector │ │ │ │ └── main.cpp │ │ │ ├── dgematrix-dgematrix │ │ │ │ └── main.cpp │ │ │ ├── dgematrix-double │ │ │ │ └── main.cpp │ │ │ ├── dgematrix-drovector │ │ │ │ └── N.A │ │ │ ├── dgematrix-dsymatrix │ │ │ │ └── main.cpp │ │ │ ├── dgematrix-forbiddencode │ │ │ │ └── main.cpp │ │ │ ├── dgematrix-io │ │ │ │ └── main.cpp │ │ │ ├── dgematrix-lapack │ │ │ │ ├── dgeev_check.hpp │ │ │ │ ├── dgels_check.hpp │ │ │ │ ├── dgelss_check.hpp │ │ │ │ ├── dgesv_check.hpp │ │ │ │ ├── dgesvd_check.hpp │ │ │ │ ├── dggev_check.hpp │ │ │ │ ├── dgglse_check.hpp │ │ │ │ └── main.cpp │ │ │ ├── dgematrix-misc │ │ │ │ └── main.cpp │ │ │ └── dgematrix-unary │ │ │ │ └── main.cpp │ │ │ ├── dgsmatrix │ │ │ ├── dgsmatrix-dcovector │ │ │ │ └── main.cpp │ │ │ ├── dgsmatrix-dgbmatrix │ │ │ │ └── main.cpp │ │ │ ├── dgsmatrix-dsymatrix │ │ │ │ └── main.cpp │ │ │ └── dgsmatrix-io │ │ │ │ └── main.cpp │ │ │ ├── do │ │ │ ├── double │ │ │ └── main.cpp │ │ │ ├── drovector │ │ │ ├── drovector-dgbmatrix │ │ │ │ └── main.cpp │ │ │ ├── drovector-dgematrix │ │ │ │ └── main.cpp │ │ │ ├── drovector-dssmatrix │ │ │ │ └── main.cpp │ │ │ ├── drovector-dsymatrix │ │ │ │ └── main.cpp │ │ │ └── drovector-io │ │ │ │ └── main.cpp │ │ │ ├── dssmatrix │ │ │ ├── dssmatrix-dcovector │ │ │ │ └── main.cpp │ │ │ ├── dssmatrix-io │ │ │ │ └── main.cpp │ │ │ └── dssmatrix-misc │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix │ │ │ ├── dsymatrix-calc │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix-constructor │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix-dcovector │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix-dgbmatrix │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix-dgematrix │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix-double │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix-drovector │ │ │ │ └── N.A │ │ │ ├── dsymatrix-dsymatrix │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix-io │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix-lapack │ │ │ │ ├── dsyev_check.hpp │ │ │ │ ├── dsygv_check.hpp │ │ │ │ ├── dsysv_check.hpp │ │ │ │ └── main.cpp │ │ │ ├── dsymatrix-misc │ │ │ │ └── main.cpp │ │ │ └── dsymatrix-unary │ │ │ │ └── main.cpp │ │ │ ├── quaternion │ │ │ └── main.cpp │ │ │ ├── small │ │ │ └── main.cpp │ │ │ ├── vc_sample │ │ │ ├── main.cpp │ │ │ ├── vc_sample.sln │ │ │ ├── vc_sample.vcproj │ │ │ └── vc_sample.vcxproj │ │ │ ├── zcovector │ │ │ ├── zcovector-calc │ │ │ │ └── main.cpp │ │ │ ├── zcovector-constructor │ │ │ │ └── main.cpp │ │ │ ├── zcovector-double │ │ │ │ └── main.cpp │ │ │ ├── zcovector-io │ │ │ │ └── main.cpp │ │ │ ├── zcovector-misc │ │ │ │ └── main.cpp │ │ │ ├── zcovector-unary │ │ │ │ └── main.cpp │ │ │ ├── zcovector-zcovector │ │ │ │ └── main.cpp │ │ │ └── zcovector-zrovector │ │ │ │ └── main.cpp │ │ │ ├── zgbmatrix │ │ │ ├── zgbmatrix-calc │ │ │ │ └── main.cpp │ │ │ ├── zgbmatrix-constructor │ │ │ │ └── main.cpp │ │ │ ├── zgbmatrix-double │ │ │ │ └── main.cpp │ │ │ ├── zgbmatrix-io │ │ │ │ └── main.cpp │ │ │ ├── zgbmatrix-lapack │ │ │ │ └── main.cpp │ │ │ ├── zgbmatrix-misc │ │ │ │ └── main.cpp │ │ │ ├── zgbmatrix-zgbmatrix │ │ │ │ └── main.cpp │ │ │ ├── zgbmatrix-zgematrix │ │ │ │ └── main.cpp │ │ │ └── zgbmatrix-zhematrix │ │ │ │ └── main.cpp │ │ │ ├── zgematrix │ │ │ ├── zgematrix-calc │ │ │ │ └── main.cpp │ │ │ ├── zgematrix-complex │ │ │ │ └── main.cpp │ │ │ ├── zgematrix-constructor │ │ │ │ └── main.cpp │ │ │ ├── zgematrix-io │ │ │ │ └── main.cpp │ │ │ ├── zgematrix-lapack │ │ │ │ ├── dggev_check.hpp │ │ │ │ ├── main.cpp │ │ │ │ ├── zgeev_check.hpp │ │ │ │ ├── zgels_check.hpp │ │ │ │ ├── zgelss_check.hpp │ │ │ │ ├── zgesv_check.hpp │ │ │ │ └── zgesvd_check.hpp │ │ │ ├── zgematrix-misc │ │ │ │ └── main.cpp │ │ │ ├── zgematrix-unary │ │ │ │ └── main.cpp │ │ │ ├── zgematrix-zcovector │ │ │ │ └── main.cpp │ │ │ ├── zgematrix-zgematrix │ │ │ │ └── main.cpp │ │ │ ├── zgematrix-zhematrix │ │ │ │ └── main.cpp │ │ │ └── zgematrix-zrovector │ │ │ │ └── N.A │ │ │ ├── zgsmatrix │ │ │ ├── zgsmatrix-io │ │ │ │ └── main.cpp │ │ │ └── zgsmatrix-zcovector │ │ │ │ └── main.cpp │ │ │ ├── zhematrix │ │ │ ├── zhecomplex │ │ │ │ ├── main.cpp │ │ │ │ └── zhe.txt │ │ │ ├── zhematrix-calc │ │ │ │ └── main.cpp │ │ │ ├── zhematrix-constructor │ │ │ │ └── main.cpp │ │ │ ├── zhematrix-double │ │ │ │ └── main.cpp │ │ │ ├── zhematrix-io │ │ │ │ └── main.cpp │ │ │ ├── zhematrix-lapack │ │ │ │ ├── dsygv_check.hpp │ │ │ │ ├── main.cpp │ │ │ │ ├── zheev_check.hpp │ │ │ │ └── zhesv_check.hpp │ │ │ ├── zhematrix-misc │ │ │ │ └── main.cpp │ │ │ ├── zhematrix-unary │ │ │ │ └── main.cpp │ │ │ ├── zhematrix-zcovector │ │ │ │ └── main.cpp │ │ │ ├── zhematrix-zgbmatrix │ │ │ │ └── main.cpp │ │ │ ├── zhematrix-zgematrix │ │ │ │ └── main.cpp │ │ │ ├── zhematrix-zhematrix │ │ │ │ └── main.cpp │ │ │ └── zhematrix-zrovector │ │ │ │ └── N.A │ │ │ ├── zhsmatrix │ │ │ ├── zhsmatrix-io │ │ │ │ └── main.cpp │ │ │ └── zhsmatrix-zcovector │ │ │ │ └── main.cpp │ │ │ └── zrovector │ │ │ ├── zrovector-io │ │ │ └── main.cpp │ │ │ ├── zrovector-zcovector │ │ │ └── main.cpp │ │ │ ├── zrovector-zgbmatrix │ │ │ └── main.cpp │ │ │ ├── zrovector-zgematrix │ │ │ └── main.cpp │ │ │ └── zrovector-zhematrix │ │ │ └── main.cpp │ └── fadbad++ │ │ ├── COPYRIGHT │ │ ├── README │ │ ├── badiff.h │ │ ├── examples │ │ ├── ExampleBAD.cpp │ │ ├── ExampleBADFAD1.cpp │ │ ├── ExampleBADFAD2.cpp │ │ ├── ExampleBADFAD3.cpp │ │ ├── ExampleBADFAD4.cpp │ │ ├── ExampleFAD.cpp │ │ ├── ExampleTAD1.cpp │ │ ├── ExampleTAD2.cpp │ │ ├── ExampleTAD3.cpp │ │ ├── Makefile │ │ └── MonteCarlo.cpp │ │ ├── extra │ │ ├── atan2ad.h │ │ ├── ndf.h │ │ └── ndfad.h │ │ ├── fadbad.h │ │ ├── fadiff.h │ │ ├── tadiff.h │ │ └── test │ │ ├── BorlandCPP │ │ ├── Test.bdsproj │ │ └── Test.bpf │ │ ├── IReportLogger.h │ │ ├── MSCPPNET │ │ ├── MSCPPNET7.10.vcproj │ │ └── MSCPPNET8.00.vcproj │ │ ├── Makefile │ │ ├── Makefile.sun │ │ ├── STDReportLog.h │ │ ├── TestAll.cpp │ │ ├── TestFADBAD.cpp │ │ ├── TestFADBAD.h │ │ ├── TestTAD.cpp │ │ ├── TestTAD.h │ │ ├── TestUDT.cpp │ │ └── TestUDT.h ├── makefile ├── makeoptions.mk ├── mc │ ├── cmodel.hpp │ ├── ellimage.hpp │ ├── ellipsoid.hpp │ ├── ffcustom.hpp │ ├── ffdagext.hpp │ ├── ffdep.hpp │ ├── ffexpr.hpp │ ├── ffextern.hpp │ ├── ffinv.hpp │ ├── fflin.hpp │ ├── ffmlp.hpp │ ├── ffmlpreg.hpp │ ├── ffspol.hpp │ ├── ffunc.hpp │ ├── ffvect.hpp │ ├── interval.hpp │ ├── mc.mk │ ├── mcboost.hpp │ ├── mccormick.hpp │ ├── mcfadbad.hpp │ ├── mcfilib.hpp │ ├── mcfunc.hpp │ ├── mchsl.hpp │ ├── mclapack.hpp │ ├── mcop.hpp │ ├── mcprofil.hpp │ ├── mctime.hpp │ ├── polimage.hpp │ ├── polymodel.hpp │ ├── pwcu.hpp │ ├── pwlu.hpp │ ├── scmodel.hpp │ ├── selim.hpp │ ├── sicmodel.hpp │ ├── slift.hpp │ ├── smon.hpp │ ├── specbnd.hpp │ ├── spoly.hpp │ ├── squad.hpp │ ├── sred.hpp │ ├── supmodel.hpp │ └── tmodel.hpp └── pymc │ ├── ffcustom.cpp │ ├── ffcustom.py │ ├── fflin.cpp │ ├── fflin.py │ ├── ffunc.cpp │ ├── ffunc.ipynb │ ├── ffvect.cpp │ ├── interval.cpp │ ├── interval.ipynb │ ├── mccormick.cpp │ ├── mccormick.ipynb │ ├── mcfadbad.cpp │ ├── mcfunc.cpp │ ├── pymc.cpp │ ├── pymc.mk │ ├── supmodel.cpp │ ├── supmodel.ipynb │ └── test.py └── test ├── DAG ├── DAG_analyze.cpp ├── DAG_compose.cpp ├── DAG_differentiate.cpp ├── DAG_doxygen.cpp ├── DAG_evaluate.cpp ├── DAG_external.cpp ├── DAG_store.cpp ├── ReLUANN_30L1.hpp ├── ReLUANN_40L4.hpp ├── fims.txt └── makefile ├── INTERVAL ├── INT-1D.cpp ├── INT-1D.g ├── INT-2D.cpp ├── INT-2D.g └── makefile ├── MCCORMICK ├── MC-1D.cpp ├── MC-1D.g ├── MC-2D.cpp ├── MC-2D.g └── makefile ├── ML ├── makefile ├── peak_ReLU_30L1.hpp ├── peak_ReLU_40L4.hpp ├── test_MLP.cpp ├── test_MLP.gpt └── test_MLPREG.cpp ├── POLYMODEL ├── CM-1D.cpp ├── CM-1D.g ├── CM-2D.cpp ├── CM-2D.g ├── CM-SCM-2D.cpp ├── SCM-QUAD-2D.cpp ├── SCM-SICM-2D.cpp ├── SCM-SICM-2D.g ├── TM-1D.cpp ├── TM-1D.g ├── TM-2D.cpp ├── TM-2D.g └── makefile ├── POLYSYMB ├── SPOLY-TEST.cpp ├── SQUAD-TEST.cpp ├── SRED-TEST.cpp └── makefile ├── RELAX ├── EXP │ ├── POLIMG-1D.eps │ ├── POLIMG-1D.g │ ├── POLIMG-1D.g~ │ ├── POLIMG-1D.out │ ├── POLIMG-PM1-1D.out │ ├── POLIMG-PM10-1D.out │ ├── POLIMG-PM2-1D.out │ ├── POLIMG-PM3-1D.out │ └── POLIMG-PM5-1D.out ├── FFDAGEXT_2d.cpp ├── FFDAGEXT_2d.g ├── LINREL_1d.cpp ├── LINREL_1d.g ├── LINREL_2d.cpp ├── LINREL_2d.g ├── LINREL_build.cpp ├── LINREL_build2.cpp ├── LINREL_build3.cpp ├── PWLREL_1d.cpp ├── PWLREL_1d.g └── makefile ├── SPECTRAL ├── SB-2D.cpp ├── SB-2D.g ├── SB-C.cpp └── makefile └── SUPRELAX ├── CS2_WNET.gms ├── SM-2D.cpp ├── SM-2D.gpt ├── SM-2D_rate.gpt ├── SM-HD.cpp ├── makefile ├── testpwcu.cpp └── testpwlu.cpp /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/CHANGES -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/README.md -------------------------------------------------------------------------------- /doc/MC++.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/MC++.dox -------------------------------------------------------------------------------- /doc/MC++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/MC++.txt -------------------------------------------------------------------------------- /doc/fig/CM-1D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/CM-1D.g -------------------------------------------------------------------------------- /doc/fig/CM-1D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/CM-1D.out -------------------------------------------------------------------------------- /doc/fig/CM-1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/CM-1D.png -------------------------------------------------------------------------------- /doc/fig/Chebyshev_model.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /doc/fig/Chebyshev_model.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Chebyshev_model.dvi -------------------------------------------------------------------------------- /doc/fig/Chebyshev_model.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Chebyshev_model.eps -------------------------------------------------------------------------------- /doc/fig/Chebyshev_model.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Chebyshev_model.log -------------------------------------------------------------------------------- /doc/fig/Chebyshev_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Chebyshev_model.png -------------------------------------------------------------------------------- /doc/fig/Chebyshev_model.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Chebyshev_model.ps -------------------------------------------------------------------------------- /doc/fig/Chebyshev_model.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Chebyshev_model.tex -------------------------------------------------------------------------------- /doc/fig/Chebyshevmodel.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Chebyshevmodel.eps -------------------------------------------------------------------------------- /doc/fig/Chebyshevmodel.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Chebyshevmodel.fig -------------------------------------------------------------------------------- /doc/fig/ELL-2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/ELL-2D.png -------------------------------------------------------------------------------- /doc/fig/F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/F.png -------------------------------------------------------------------------------- /doc/fig/F0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/F0.png -------------------------------------------------------------------------------- /doc/fig/FTE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/FTE.png -------------------------------------------------------------------------------- /doc/fig/F_TAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/F_TAD.png -------------------------------------------------------------------------------- /doc/fig/ISM-2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/ISM-2D.png -------------------------------------------------------------------------------- /doc/fig/MC-1D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/MC-1D.g -------------------------------------------------------------------------------- /doc/fig/MC-1D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/MC-1D.out -------------------------------------------------------------------------------- /doc/fig/MC-1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/MC-1D.png -------------------------------------------------------------------------------- /doc/fig/MC-1D_linearize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/MC-1D_linearize.png -------------------------------------------------------------------------------- /doc/fig/MC-1D_relax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/MC-1D_relax.png -------------------------------------------------------------------------------- /doc/fig/MC-TM-2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/MC-TM-2D.png -------------------------------------------------------------------------------- /doc/fig/MCTM-1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/MCTM-1D.png -------------------------------------------------------------------------------- /doc/fig/McCormick_relax.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /doc/fig/McCormick_relax.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/McCormick_relax.dvi -------------------------------------------------------------------------------- /doc/fig/McCormick_relax.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/McCormick_relax.eps -------------------------------------------------------------------------------- /doc/fig/McCormick_relax.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/McCormick_relax.log -------------------------------------------------------------------------------- /doc/fig/McCormick_relax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/McCormick_relax.png -------------------------------------------------------------------------------- /doc/fig/McCormick_relax.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/McCormick_relax.ps -------------------------------------------------------------------------------- /doc/fig/McCormick_relax.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/McCormick_relax.tex -------------------------------------------------------------------------------- /doc/fig/McCormickrelax.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/McCormickrelax.eps -------------------------------------------------------------------------------- /doc/fig/McCormickrelax.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/McCormickrelax.fig -------------------------------------------------------------------------------- /doc/fig/OAcvx_strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/OAcvx_strategy.png -------------------------------------------------------------------------------- /doc/fig/PWCSM-2D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/PWCSM-2D.g -------------------------------------------------------------------------------- /doc/fig/PWCSM-2D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/PWCSM-2D.out -------------------------------------------------------------------------------- /doc/fig/PWCSM-2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/PWCSM-2D.png -------------------------------------------------------------------------------- /doc/fig/PWCSM2-2D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/PWCSM2-2D.out -------------------------------------------------------------------------------- /doc/fig/PWLSM-2D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/PWLSM-2D.g -------------------------------------------------------------------------------- /doc/fig/PWLSM-2D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/PWLSM-2D.out -------------------------------------------------------------------------------- /doc/fig/PWLSM-2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/PWLSM-2D.png -------------------------------------------------------------------------------- /doc/fig/Quadratization_algo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Quadratization_algo.png -------------------------------------------------------------------------------- /doc/fig/SB-2D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/SB-2D.g -------------------------------------------------------------------------------- /doc/fig/SB-2D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/SB-2D.out -------------------------------------------------------------------------------- /doc/fig/SB-2D_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/SB-2D_function.png -------------------------------------------------------------------------------- /doc/fig/SB-2D_spectral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/SB-2D_spectral.png -------------------------------------------------------------------------------- /doc/fig/TM+MCTM-1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/TM+MCTM-1D.png -------------------------------------------------------------------------------- /doc/fig/TM-1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/TM-1D.png -------------------------------------------------------------------------------- /doc/fig/TM-2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/TM-2D.png -------------------------------------------------------------------------------- /doc/fig/TM-MC-1D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/TM-MC-1D.g -------------------------------------------------------------------------------- /doc/fig/TM-MC-1D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/TM-MC-1D.out -------------------------------------------------------------------------------- /doc/fig/TM-MC-2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/TM-MC-2D.png -------------------------------------------------------------------------------- /doc/fig/Taylor_model.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /doc/fig/Taylor_model.dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Taylor_model.dvi -------------------------------------------------------------------------------- /doc/fig/Taylor_model.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Taylor_model.eps -------------------------------------------------------------------------------- /doc/fig/Taylor_model.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Taylor_model.log -------------------------------------------------------------------------------- /doc/fig/Taylor_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Taylor_model.png -------------------------------------------------------------------------------- /doc/fig/Taylor_model.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Taylor_model.ps -------------------------------------------------------------------------------- /doc/fig/Taylor_model.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Taylor_model.tex -------------------------------------------------------------------------------- /doc/fig/Taylormodel.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Taylormodel.eps -------------------------------------------------------------------------------- /doc/fig/Taylormodel.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/Taylormodel.fig -------------------------------------------------------------------------------- /doc/fig/dF1dX3_BAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/dF1dX3_BAD.png -------------------------------------------------------------------------------- /doc/fig/dF1dX3_FAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/dF1dX3_FAD.png -------------------------------------------------------------------------------- /doc/fig/dFdX_BAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/dFdX_BAD.png -------------------------------------------------------------------------------- /doc/fig/dFdX_FAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/dFdX_FAD.png -------------------------------------------------------------------------------- /doc/fig/exm_uni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/doc/fig/exm_uni.png -------------------------------------------------------------------------------- /src/3rdparty/boost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/boost/Makefile -------------------------------------------------------------------------------- /src/3rdparty/boost/remez.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/boost/remez.cpp -------------------------------------------------------------------------------- /src/3rdparty/boost/remez.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/boost/remez.hpp -------------------------------------------------------------------------------- /src/3rdparty/boost/solve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/boost/solve.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/README -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/benchmark/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/benchmark/clean -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/benchmark/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/benchmark/do -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_copy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_copy/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_plus/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_plus/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_solve/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_solve/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_times/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_times/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_zero/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/benchmark/double_zero/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/BiCG/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/BiCG/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/BiCGstab/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/BiCGstab/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/CG/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/CG/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/DILU-CG/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/DILU-CG/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/A8.dge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/A8.dge -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/Makefile -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/Makefile.g++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/Makefile.g++ -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/b8.dco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/b8.dco -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/GMRES/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/MINRES/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/MINRES/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/QMR/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/QMR/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/SOR/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/SOR/Makefile -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/SOR/Makefile.g++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/SOR/Makefile.g++ -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/SOR/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/SOR/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/SYMMLQ/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/SYMMLQ/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/Subspace/K6.dssmatrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/Subspace/K6.dssmatrix -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/Subspace/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/Subspace/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/clean -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2png/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2png/Makefile -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2png/Makefile.g++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2png/Makefile.g++ -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2png/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2png/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2vtk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2vtk/Makefile -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2vtk/Makefile.g++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2vtk/Makefile.g++ -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2vtk/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/contrib/dge2vtk/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/Doxyfile -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/clean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -f std err doxygen.log 3 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/do -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/fullclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/fullclean -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/bandmatrix.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/bandmatrix.eps -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/bandmatrix.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/bandmatrix.obj -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/bandmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/bandmatrix.png -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-array.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-array.eps -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-array.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-array.obj -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-del.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-del.eps -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-del.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-del.obj -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-put.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-put.eps -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-put.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/dssmatrix-put.obj -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/image/tmpmodel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/image/tmpmodel.obj -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/main_page/Japanese.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/main_page/Japanese.html -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/main_page/MainPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/main_page/MainPage.html -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/related_pages/File_Format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/related_pages/File_Format.html -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/related_pages/RelatedPages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/related_pages/RelatedPages.html -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/related_pages/Smart-Temporary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/related_pages/Smart-Temporary.html -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/doc/related_pages/Sparse_Matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/doc/related_pages/Sparse_Matrix.html -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-_dgbmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-_dgematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-_dgsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-_dsymatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-dgbmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-dgematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-dgsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-dsymatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dcovector-/_dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgbmatrix-/_dgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgematrix-/_dgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dgsmatrix-/_dgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_drovector-/_drovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dssmatrix-/_dssmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_dsymatrix-/_dsymatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-_zgbmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-_zgematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-_zgsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-_zhematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-_zhsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-_zssmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-zgbmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-zgematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-zgsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-zhematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-zhsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector-zssmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zcovector-/_zcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgbmatrix-/_zgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-cast.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgematrix-/_zgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zgsmatrix-/_zgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhematrix-/_zhematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zhsmatrix-/_zhsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/_zrovector-/_zrovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zhematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zhematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zhsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zhsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zrovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-_zrovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zhematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zhematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zhsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zhsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zrovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/complex-/complex-zrovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/cpplapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/cpplapack.h -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-_dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-_dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-_dgbmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-_dgematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-_dgsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-_drovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-_drovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-_dsymatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-dgbmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-dgematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-dgsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-drovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-drovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-dsymatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dcovector-/dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dsymatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-_dsymatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dsymatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-dsymatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-lapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-lapack.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgbmatrix-/dgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dsymatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-_dsymatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-dgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-dgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-lapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-lapack.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgematrix-/dgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-pardiso.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-pardiso.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-rci.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-rci.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgrmatrix-/dgrmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-pardiso.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-pardiso.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dgsmatrix-/dgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_drovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_drovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dssmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dssmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dsymatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_dsymatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zhematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zhematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zhsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zhsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zrovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-_zrovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dgrmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dgrmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-drovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-drovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dssmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dssmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dsymatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-dsymatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zhematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zhematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zhsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zhsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zrovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/double-/double-zrovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/drovector-/drovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-pardiso.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-pardiso.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dssmatrix-/dssmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-_drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-drovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-lapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-lapack.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/dsymatrix-/dsymatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/misc/dcomponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/misc/dcomponent.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/misc/zcomponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/misc/zcomponent.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/misc/zhecomplex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/misc/zhecomplex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/prototype/dblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/prototype/dblas.h -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/prototype/dlapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/prototype/dlapack.h -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/prototype/mkl_blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/prototype/mkl_blas.h -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/prototype/mkl_lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/prototype/mkl_lapack.h -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/prototype/zblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/prototype/zblas.h -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/prototype/zlapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/prototype/zlapack.h -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/comple-small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/comple-small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/dcovector_small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/dcovector_small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/dgematrix_small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/dgematrix_small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/double-small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/double-small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/drovector_small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/drovector_small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/dsymatrix_small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/dsymatrix_small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/zcovector_small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/zcovector_small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/zgematrix_small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/zgematrix_small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/zhematrix_small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/zhematrix_small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/small/zrovector_small.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/small/zrovector_small.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-_zgbmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-_zgematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-_zgsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-_zhematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-_zhsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-_zssmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-zgbmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-zgematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-zgsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-zhematrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-zhsmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector-zssmatrix.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zcovector-/zcovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-lapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-lapack.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgbmatrix-/zgbmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-cast.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-lapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-lapack.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgematrix-/zgematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zgsmatrix-/zgsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-lapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-lapack.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhematrix-/zhematrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-_zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-cast.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix-zrovector.hpp: -------------------------------------------------------------------------------- 1 | //// N/A //// 2 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zhsmatrix-/zhsmatrix.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-calc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-calc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-complex.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-double.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-io.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-misc.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-unary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector-unary.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/include/zrovector-/zrovector.hpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/makefiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/makefiles/Makefile -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/makefiles/Makefile-icl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/makefiles/Makefile-icl -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/makefiles/Makefile.g++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/makefiles/Makefile.g++ -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/makefiles/Makefile.icpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/makefiles/Makefile.icpc -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/packaging/deb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/packaging/deb/README -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/packaging/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/packaging/deb/control -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/packaging/deb/mkdeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/packaging/deb/mkdeb.sh -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/packaging/exe/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/packaging/exe/README.txt -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/packaging/exe/cpplapack.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/packaging/exe/cpplapack.nsi -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/packaging/exe/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/packaging/exe/stdint.h -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/packaging/rpm/cpplapack.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/packaging/rpm/cpplapack.spec -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/packaging/rpm/mkrpm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rpmbuild -bb cpplapack.spec 3 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/packaging/tgz/mktgz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/packaging/tgz/mktgz.sh -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/clean -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/complex/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/complex/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-calc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-calc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-double/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-double/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-misc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-misc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-unary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dcovector/dcovector-unary/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-calc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-calc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-double/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-double/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-lapack/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-lapack/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-misc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgbmatrix/dgbmatrix-misc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-calc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-calc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-double/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-double/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-drovector/N.A: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-lapack/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-lapack/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-misc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-misc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-unary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgematrix/dgematrix-unary/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dgsmatrix/dgsmatrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dgsmatrix/dgsmatrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/do -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/double/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/double/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/drovector/drovector-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/drovector/drovector-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dssmatrix/dssmatrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dssmatrix/dssmatrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dssmatrix/dssmatrix-misc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dssmatrix/dssmatrix-misc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-calc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-calc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-double/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-double/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-drovector/N.A: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-lapack/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-lapack/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-misc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-misc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-unary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/dsymatrix/dsymatrix-unary/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/quaternion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/quaternion/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/small/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/small/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/vc_sample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/vc_sample/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/vc_sample/vc_sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/vc_sample/vc_sample.sln -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/vc_sample/vc_sample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/vc_sample/vc_sample.vcproj -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/vc_sample/vc_sample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/vc_sample/vc_sample.vcxproj -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-calc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-calc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-double/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-double/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-misc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-misc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-unary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zcovector/zcovector-unary/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-calc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-calc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-double/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-double/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-lapack/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-lapack/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-misc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgbmatrix/zgbmatrix-misc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-calc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-calc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-lapack/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-lapack/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-misc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-misc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-unary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-unary/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgematrix/zgematrix-zrovector/N.A: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zgsmatrix/zgsmatrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zgsmatrix/zgsmatrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhecomplex/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhecomplex/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhecomplex/zhe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhecomplex/zhe.txt -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-calc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-calc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-double/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-double/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-lapack/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-lapack/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-misc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-misc/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-unary/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-unary/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhematrix/zhematrix-zrovector/N.A: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zhsmatrix/zhsmatrix-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zhsmatrix/zhsmatrix-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/cpplapack-2015.05.11-1/test/zrovector/zrovector-io/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/cpplapack-2015.05.11-1/test/zrovector/zrovector-io/main.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/COPYRIGHT -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/README -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/badiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/badiff.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/ExampleBAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/ExampleBAD.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/ExampleBADFAD1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/ExampleBADFAD1.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/ExampleBADFAD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/ExampleBADFAD2.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/ExampleBADFAD3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/ExampleBADFAD3.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/ExampleBADFAD4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/ExampleBADFAD4.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/ExampleFAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/ExampleFAD.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/ExampleTAD1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/ExampleTAD1.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/ExampleTAD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/ExampleTAD2.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/ExampleTAD3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/ExampleTAD3.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/Makefile -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/examples/MonteCarlo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/examples/MonteCarlo.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/extra/atan2ad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/extra/atan2ad.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/extra/ndf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/extra/ndf.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/extra/ndfad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/extra/ndfad.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/fadbad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/fadbad.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/fadiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/fadiff.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/tadiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/tadiff.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/BorlandCPP/Test.bdsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/BorlandCPP/Test.bdsproj -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/BorlandCPP/Test.bpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/BorlandCPP/Test.bpf -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/IReportLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/IReportLogger.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/MSCPPNET/MSCPPNET7.10.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/MSCPPNET/MSCPPNET7.10.vcproj -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/MSCPPNET/MSCPPNET8.00.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/MSCPPNET/MSCPPNET8.00.vcproj -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/Makefile -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/Makefile.sun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/Makefile.sun -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/STDReportLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/STDReportLog.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/TestAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/TestAll.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/TestFADBAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/TestFADBAD.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/TestFADBAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/TestFADBAD.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/TestTAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/TestTAD.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/TestTAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/TestTAD.h -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/TestUDT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/TestUDT.cpp -------------------------------------------------------------------------------- /src/3rdparty/fadbad++/test/TestUDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/3rdparty/fadbad++/test/TestUDT.h -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/makefile -------------------------------------------------------------------------------- /src/makeoptions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/makeoptions.mk -------------------------------------------------------------------------------- /src/mc/cmodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/cmodel.hpp -------------------------------------------------------------------------------- /src/mc/ellimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ellimage.hpp -------------------------------------------------------------------------------- /src/mc/ellipsoid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ellipsoid.hpp -------------------------------------------------------------------------------- /src/mc/ffcustom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffcustom.hpp -------------------------------------------------------------------------------- /src/mc/ffdagext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffdagext.hpp -------------------------------------------------------------------------------- /src/mc/ffdep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffdep.hpp -------------------------------------------------------------------------------- /src/mc/ffexpr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffexpr.hpp -------------------------------------------------------------------------------- /src/mc/ffextern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffextern.hpp -------------------------------------------------------------------------------- /src/mc/ffinv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffinv.hpp -------------------------------------------------------------------------------- /src/mc/fflin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/fflin.hpp -------------------------------------------------------------------------------- /src/mc/ffmlp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffmlp.hpp -------------------------------------------------------------------------------- /src/mc/ffmlpreg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffmlpreg.hpp -------------------------------------------------------------------------------- /src/mc/ffspol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffspol.hpp -------------------------------------------------------------------------------- /src/mc/ffunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffunc.hpp -------------------------------------------------------------------------------- /src/mc/ffvect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/ffvect.hpp -------------------------------------------------------------------------------- /src/mc/interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/interval.hpp -------------------------------------------------------------------------------- /src/mc/mc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mc.mk -------------------------------------------------------------------------------- /src/mc/mcboost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mcboost.hpp -------------------------------------------------------------------------------- /src/mc/mccormick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mccormick.hpp -------------------------------------------------------------------------------- /src/mc/mcfadbad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mcfadbad.hpp -------------------------------------------------------------------------------- /src/mc/mcfilib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mcfilib.hpp -------------------------------------------------------------------------------- /src/mc/mcfunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mcfunc.hpp -------------------------------------------------------------------------------- /src/mc/mchsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mchsl.hpp -------------------------------------------------------------------------------- /src/mc/mclapack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mclapack.hpp -------------------------------------------------------------------------------- /src/mc/mcop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mcop.hpp -------------------------------------------------------------------------------- /src/mc/mcprofil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mcprofil.hpp -------------------------------------------------------------------------------- /src/mc/mctime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/mctime.hpp -------------------------------------------------------------------------------- /src/mc/polimage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/polimage.hpp -------------------------------------------------------------------------------- /src/mc/polymodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/polymodel.hpp -------------------------------------------------------------------------------- /src/mc/pwcu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/pwcu.hpp -------------------------------------------------------------------------------- /src/mc/pwlu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/pwlu.hpp -------------------------------------------------------------------------------- /src/mc/scmodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/scmodel.hpp -------------------------------------------------------------------------------- /src/mc/selim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/selim.hpp -------------------------------------------------------------------------------- /src/mc/sicmodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/sicmodel.hpp -------------------------------------------------------------------------------- /src/mc/slift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/slift.hpp -------------------------------------------------------------------------------- /src/mc/smon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/smon.hpp -------------------------------------------------------------------------------- /src/mc/specbnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/specbnd.hpp -------------------------------------------------------------------------------- /src/mc/spoly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/spoly.hpp -------------------------------------------------------------------------------- /src/mc/squad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/squad.hpp -------------------------------------------------------------------------------- /src/mc/sred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/sred.hpp -------------------------------------------------------------------------------- /src/mc/supmodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/supmodel.hpp -------------------------------------------------------------------------------- /src/mc/tmodel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/mc/tmodel.hpp -------------------------------------------------------------------------------- /src/pymc/ffcustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/ffcustom.cpp -------------------------------------------------------------------------------- /src/pymc/ffcustom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/ffcustom.py -------------------------------------------------------------------------------- /src/pymc/fflin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/fflin.cpp -------------------------------------------------------------------------------- /src/pymc/fflin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/fflin.py -------------------------------------------------------------------------------- /src/pymc/ffunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/ffunc.cpp -------------------------------------------------------------------------------- /src/pymc/ffunc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/ffunc.ipynb -------------------------------------------------------------------------------- /src/pymc/ffvect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/ffvect.cpp -------------------------------------------------------------------------------- /src/pymc/interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/interval.cpp -------------------------------------------------------------------------------- /src/pymc/interval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/interval.ipynb -------------------------------------------------------------------------------- /src/pymc/mccormick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/mccormick.cpp -------------------------------------------------------------------------------- /src/pymc/mccormick.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/mccormick.ipynb -------------------------------------------------------------------------------- /src/pymc/mcfadbad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/mcfadbad.cpp -------------------------------------------------------------------------------- /src/pymc/mcfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/mcfunc.cpp -------------------------------------------------------------------------------- /src/pymc/pymc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/pymc.cpp -------------------------------------------------------------------------------- /src/pymc/pymc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/pymc.mk -------------------------------------------------------------------------------- /src/pymc/supmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/supmodel.cpp -------------------------------------------------------------------------------- /src/pymc/supmodel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/supmodel.ipynb -------------------------------------------------------------------------------- /src/pymc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/src/pymc/test.py -------------------------------------------------------------------------------- /test/DAG/DAG_analyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/DAG_analyze.cpp -------------------------------------------------------------------------------- /test/DAG/DAG_compose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/DAG_compose.cpp -------------------------------------------------------------------------------- /test/DAG/DAG_differentiate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/DAG_differentiate.cpp -------------------------------------------------------------------------------- /test/DAG/DAG_doxygen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/DAG_doxygen.cpp -------------------------------------------------------------------------------- /test/DAG/DAG_evaluate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/DAG_evaluate.cpp -------------------------------------------------------------------------------- /test/DAG/DAG_external.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/DAG_external.cpp -------------------------------------------------------------------------------- /test/DAG/DAG_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/DAG_store.cpp -------------------------------------------------------------------------------- /test/DAG/ReLUANN_30L1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/ReLUANN_30L1.hpp -------------------------------------------------------------------------------- /test/DAG/ReLUANN_40L4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/ReLUANN_40L4.hpp -------------------------------------------------------------------------------- /test/DAG/fims.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/fims.txt -------------------------------------------------------------------------------- /test/DAG/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/DAG/makefile -------------------------------------------------------------------------------- /test/INTERVAL/INT-1D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/INTERVAL/INT-1D.cpp -------------------------------------------------------------------------------- /test/INTERVAL/INT-1D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/INTERVAL/INT-1D.g -------------------------------------------------------------------------------- /test/INTERVAL/INT-2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/INTERVAL/INT-2D.cpp -------------------------------------------------------------------------------- /test/INTERVAL/INT-2D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/INTERVAL/INT-2D.g -------------------------------------------------------------------------------- /test/INTERVAL/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/INTERVAL/makefile -------------------------------------------------------------------------------- /test/MCCORMICK/MC-1D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/MCCORMICK/MC-1D.cpp -------------------------------------------------------------------------------- /test/MCCORMICK/MC-1D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/MCCORMICK/MC-1D.g -------------------------------------------------------------------------------- /test/MCCORMICK/MC-2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/MCCORMICK/MC-2D.cpp -------------------------------------------------------------------------------- /test/MCCORMICK/MC-2D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/MCCORMICK/MC-2D.g -------------------------------------------------------------------------------- /test/MCCORMICK/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/MCCORMICK/makefile -------------------------------------------------------------------------------- /test/ML/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/ML/makefile -------------------------------------------------------------------------------- /test/ML/peak_ReLU_30L1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/ML/peak_ReLU_30L1.hpp -------------------------------------------------------------------------------- /test/ML/peak_ReLU_40L4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/ML/peak_ReLU_40L4.hpp -------------------------------------------------------------------------------- /test/ML/test_MLP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/ML/test_MLP.cpp -------------------------------------------------------------------------------- /test/ML/test_MLP.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/ML/test_MLP.gpt -------------------------------------------------------------------------------- /test/ML/test_MLPREG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/ML/test_MLPREG.cpp -------------------------------------------------------------------------------- /test/POLYMODEL/CM-1D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/CM-1D.cpp -------------------------------------------------------------------------------- /test/POLYMODEL/CM-1D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/CM-1D.g -------------------------------------------------------------------------------- /test/POLYMODEL/CM-2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/CM-2D.cpp -------------------------------------------------------------------------------- /test/POLYMODEL/CM-2D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/CM-2D.g -------------------------------------------------------------------------------- /test/POLYMODEL/CM-SCM-2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/CM-SCM-2D.cpp -------------------------------------------------------------------------------- /test/POLYMODEL/SCM-QUAD-2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/SCM-QUAD-2D.cpp -------------------------------------------------------------------------------- /test/POLYMODEL/SCM-SICM-2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/SCM-SICM-2D.cpp -------------------------------------------------------------------------------- /test/POLYMODEL/SCM-SICM-2D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/SCM-SICM-2D.g -------------------------------------------------------------------------------- /test/POLYMODEL/TM-1D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/TM-1D.cpp -------------------------------------------------------------------------------- /test/POLYMODEL/TM-1D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/TM-1D.g -------------------------------------------------------------------------------- /test/POLYMODEL/TM-2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/TM-2D.cpp -------------------------------------------------------------------------------- /test/POLYMODEL/TM-2D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/TM-2D.g -------------------------------------------------------------------------------- /test/POLYMODEL/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYMODEL/makefile -------------------------------------------------------------------------------- /test/POLYSYMB/SPOLY-TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYSYMB/SPOLY-TEST.cpp -------------------------------------------------------------------------------- /test/POLYSYMB/SQUAD-TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYSYMB/SQUAD-TEST.cpp -------------------------------------------------------------------------------- /test/POLYSYMB/SRED-TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYSYMB/SRED-TEST.cpp -------------------------------------------------------------------------------- /test/POLYSYMB/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/POLYSYMB/makefile -------------------------------------------------------------------------------- /test/RELAX/EXP/POLIMG-1D.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/EXP/POLIMG-1D.eps -------------------------------------------------------------------------------- /test/RELAX/EXP/POLIMG-1D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/EXP/POLIMG-1D.g -------------------------------------------------------------------------------- /test/RELAX/EXP/POLIMG-1D.g~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/EXP/POLIMG-1D.g~ -------------------------------------------------------------------------------- /test/RELAX/EXP/POLIMG-1D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/EXP/POLIMG-1D.out -------------------------------------------------------------------------------- /test/RELAX/EXP/POLIMG-PM1-1D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/EXP/POLIMG-PM1-1D.out -------------------------------------------------------------------------------- /test/RELAX/EXP/POLIMG-PM10-1D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/EXP/POLIMG-PM10-1D.out -------------------------------------------------------------------------------- /test/RELAX/EXP/POLIMG-PM2-1D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/EXP/POLIMG-PM2-1D.out -------------------------------------------------------------------------------- /test/RELAX/EXP/POLIMG-PM3-1D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/EXP/POLIMG-PM3-1D.out -------------------------------------------------------------------------------- /test/RELAX/EXP/POLIMG-PM5-1D.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/EXP/POLIMG-PM5-1D.out -------------------------------------------------------------------------------- /test/RELAX/FFDAGEXT_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/FFDAGEXT_2d.cpp -------------------------------------------------------------------------------- /test/RELAX/FFDAGEXT_2d.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/FFDAGEXT_2d.g -------------------------------------------------------------------------------- /test/RELAX/LINREL_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/LINREL_1d.cpp -------------------------------------------------------------------------------- /test/RELAX/LINREL_1d.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/LINREL_1d.g -------------------------------------------------------------------------------- /test/RELAX/LINREL_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/LINREL_2d.cpp -------------------------------------------------------------------------------- /test/RELAX/LINREL_2d.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/LINREL_2d.g -------------------------------------------------------------------------------- /test/RELAX/LINREL_build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/LINREL_build.cpp -------------------------------------------------------------------------------- /test/RELAX/LINREL_build2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/LINREL_build2.cpp -------------------------------------------------------------------------------- /test/RELAX/LINREL_build3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/LINREL_build3.cpp -------------------------------------------------------------------------------- /test/RELAX/PWLREL_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/PWLREL_1d.cpp -------------------------------------------------------------------------------- /test/RELAX/PWLREL_1d.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/PWLREL_1d.g -------------------------------------------------------------------------------- /test/RELAX/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/RELAX/makefile -------------------------------------------------------------------------------- /test/SPECTRAL/SB-2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SPECTRAL/SB-2D.cpp -------------------------------------------------------------------------------- /test/SPECTRAL/SB-2D.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SPECTRAL/SB-2D.g -------------------------------------------------------------------------------- /test/SPECTRAL/SB-C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SPECTRAL/SB-C.cpp -------------------------------------------------------------------------------- /test/SPECTRAL/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SPECTRAL/makefile -------------------------------------------------------------------------------- /test/SUPRELAX/CS2_WNET.gms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SUPRELAX/CS2_WNET.gms -------------------------------------------------------------------------------- /test/SUPRELAX/SM-2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SUPRELAX/SM-2D.cpp -------------------------------------------------------------------------------- /test/SUPRELAX/SM-2D.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SUPRELAX/SM-2D.gpt -------------------------------------------------------------------------------- /test/SUPRELAX/SM-2D_rate.gpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SUPRELAX/SM-2D_rate.gpt -------------------------------------------------------------------------------- /test/SUPRELAX/SM-HD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SUPRELAX/SM-HD.cpp -------------------------------------------------------------------------------- /test/SUPRELAX/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SUPRELAX/makefile -------------------------------------------------------------------------------- /test/SUPRELAX/testpwcu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SUPRELAX/testpwcu.cpp -------------------------------------------------------------------------------- /test/SUPRELAX/testpwlu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omega-icl/mcpp/HEAD/test/SUPRELAX/testpwlu.cpp --------------------------------------------------------------------------------