├── Changelog ├── LICENSE ├── Make ├── Makefile_examples_template.inc ├── Makefile_lib_template.inc ├── make.darwin_xlf ├── make.ibm ├── make.irix ├── make.linux_gcc_ia32 ├── make.linux_gcc_ia64 ├── make.linux_gcc_x86_64 ├── make.linux_icc_ia32 ├── make.linux_icc_ia64 ├── make.linux_icc_x86_64 └── make.sunos ├── Makefile ├── README.md ├── common ├── Makefile ├── iblasext.F ├── printstat.F └── stat.h ├── complex16 ├── Examples │ ├── Makefile │ ├── Output │ │ ├── Sigma.ascii │ │ ├── Sigma_IRL.ascii │ │ ├── U.ascii │ │ ├── U_IRL.ascii │ │ ├── V.ascii │ │ └── V_IRL.ascii │ ├── compare.F │ ├── compare.in │ ├── compare_irl.in │ ├── example.F │ ├── example.in │ ├── example_irl.F │ ├── example_irl.in │ ├── matvec.F │ ├── matvec.h │ └── mhd1280b.cua ├── Makefile ├── zblasext.F ├── zgemm_ovwr.F ├── zgetu0.F ├── zlanbpro.F ├── zlansvd.F ├── zlansvd_irl.F ├── zreorth.F ├── zritzvec.F └── zsafescal.F ├── complex8 ├── Examples │ ├── Makefile │ ├── Output │ │ ├── Sigma.ascii │ │ ├── Sigma_IRL.ascii │ │ ├── U.ascii │ │ ├── U_IRL.ascii │ │ ├── V.ascii │ │ └── V_IRL.ascii │ ├── compare.F │ ├── compare.in │ ├── compare_irl.in │ ├── example.F │ ├── example.in │ ├── example_irl.F │ ├── example_irl.in │ ├── matvec.F │ ├── matvec.h │ └── mhd1280b.cua ├── Makefile ├── cblasext.F ├── cgemm_ovwr.F ├── cgetu0.F ├── clanbpro.F ├── clansvd.F ├── clansvd_irl.F ├── creorth.F ├── critzvec.F └── csafescal.F ├── configure ├── double ├── Examples │ ├── Makefile │ ├── Output │ │ ├── Sigma.ascii │ │ ├── Sigma_IRL.ascii │ │ ├── U.ascii │ │ ├── U_IRL.ascii │ │ ├── V.ascii │ │ └── V_IRL.ascii │ ├── compare.F │ ├── compare.in │ ├── compare_irl.in │ ├── example.F │ ├── example.in │ ├── example_irl.F │ ├── example_irl.in │ ├── illc1850.coord │ ├── illc1850.diag │ ├── illc1850.rra │ ├── matvec.F │ └── matvec.h ├── Makefile ├── dblasext.F ├── dbsvd.F ├── dgemm_ovwr.F ├── dgetu0.F ├── dlanbpro.F ├── dlansvd.F ├── dlansvd_irl.F ├── dortho_rec.F ├── dreorth.F ├── dritzvec.F └── dsafescal.F ├── make.inc └── single ├── Examples ├── Makefile ├── Output │ ├── Sigma.ascii │ ├── Sigma_IRL.ascii │ ├── U.ascii │ ├── U_IRL.ascii │ ├── V.ascii │ └── V_IRL.ascii ├── compare.F ├── compare.in ├── compare_irl.in ├── example.F ├── example.in ├── example_irl.F ├── example_irl.in ├── illc1850.coord ├── illc1850.diag ├── illc1850.rra ├── matvec.F └── matvec.h ├── Makefile ├── sblasext.F ├── sbsvd.F ├── sgemm_ovwr.F ├── sgetu0.F ├── slanbpro.F ├── slansvd.F ├── slansvd_irl.F ├── sortho_rec.F ├── sreorth.F ├── sritzvec.F └── ssafescal.F /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Changelog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/LICENSE -------------------------------------------------------------------------------- /Make/Makefile_examples_template.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/Makefile_examples_template.inc -------------------------------------------------------------------------------- /Make/Makefile_lib_template.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/Makefile_lib_template.inc -------------------------------------------------------------------------------- /Make/make.darwin_xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.darwin_xlf -------------------------------------------------------------------------------- /Make/make.ibm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.ibm -------------------------------------------------------------------------------- /Make/make.irix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.irix -------------------------------------------------------------------------------- /Make/make.linux_gcc_ia32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.linux_gcc_ia32 -------------------------------------------------------------------------------- /Make/make.linux_gcc_ia64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.linux_gcc_ia64 -------------------------------------------------------------------------------- /Make/make.linux_gcc_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.linux_gcc_x86_64 -------------------------------------------------------------------------------- /Make/make.linux_icc_ia32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.linux_icc_ia32 -------------------------------------------------------------------------------- /Make/make.linux_icc_ia64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.linux_icc_ia64 -------------------------------------------------------------------------------- /Make/make.linux_icc_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.linux_icc_x86_64 -------------------------------------------------------------------------------- /Make/make.sunos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Make/make.sunos -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/README.md -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/iblasext.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/common/iblasext.F -------------------------------------------------------------------------------- /common/printstat.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/common/printstat.F -------------------------------------------------------------------------------- /common/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/common/stat.h -------------------------------------------------------------------------------- /complex16/Examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/Makefile -------------------------------------------------------------------------------- /complex16/Examples/Output/Sigma.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/Output/Sigma.ascii -------------------------------------------------------------------------------- /complex16/Examples/Output/Sigma_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/Output/Sigma_IRL.ascii -------------------------------------------------------------------------------- /complex16/Examples/Output/U.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/Output/U.ascii -------------------------------------------------------------------------------- /complex16/Examples/Output/U_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/Output/U_IRL.ascii -------------------------------------------------------------------------------- /complex16/Examples/Output/V.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/Output/V.ascii -------------------------------------------------------------------------------- /complex16/Examples/Output/V_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/Output/V_IRL.ascii -------------------------------------------------------------------------------- /complex16/Examples/compare.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/compare.F -------------------------------------------------------------------------------- /complex16/Examples/compare.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/compare.in -------------------------------------------------------------------------------- /complex16/Examples/compare_irl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/compare_irl.in -------------------------------------------------------------------------------- /complex16/Examples/example.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/example.F -------------------------------------------------------------------------------- /complex16/Examples/example.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/example.in -------------------------------------------------------------------------------- /complex16/Examples/example_irl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/example_irl.F -------------------------------------------------------------------------------- /complex16/Examples/example_irl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/example_irl.in -------------------------------------------------------------------------------- /complex16/Examples/matvec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/matvec.F -------------------------------------------------------------------------------- /complex16/Examples/matvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/matvec.h -------------------------------------------------------------------------------- /complex16/Examples/mhd1280b.cua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Examples/mhd1280b.cua -------------------------------------------------------------------------------- /complex16/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/Makefile -------------------------------------------------------------------------------- /complex16/zblasext.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/zblasext.F -------------------------------------------------------------------------------- /complex16/zgemm_ovwr.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/zgemm_ovwr.F -------------------------------------------------------------------------------- /complex16/zgetu0.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/zgetu0.F -------------------------------------------------------------------------------- /complex16/zlanbpro.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/zlanbpro.F -------------------------------------------------------------------------------- /complex16/zlansvd.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/zlansvd.F -------------------------------------------------------------------------------- /complex16/zlansvd_irl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/zlansvd_irl.F -------------------------------------------------------------------------------- /complex16/zreorth.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/zreorth.F -------------------------------------------------------------------------------- /complex16/zritzvec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/zritzvec.F -------------------------------------------------------------------------------- /complex16/zsafescal.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex16/zsafescal.F -------------------------------------------------------------------------------- /complex8/Examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/Makefile -------------------------------------------------------------------------------- /complex8/Examples/Output/Sigma.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/Output/Sigma.ascii -------------------------------------------------------------------------------- /complex8/Examples/Output/Sigma_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/Output/Sigma_IRL.ascii -------------------------------------------------------------------------------- /complex8/Examples/Output/U.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/Output/U.ascii -------------------------------------------------------------------------------- /complex8/Examples/Output/U_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/Output/U_IRL.ascii -------------------------------------------------------------------------------- /complex8/Examples/Output/V.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/Output/V.ascii -------------------------------------------------------------------------------- /complex8/Examples/Output/V_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/Output/V_IRL.ascii -------------------------------------------------------------------------------- /complex8/Examples/compare.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/compare.F -------------------------------------------------------------------------------- /complex8/Examples/compare.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/compare.in -------------------------------------------------------------------------------- /complex8/Examples/compare_irl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/compare_irl.in -------------------------------------------------------------------------------- /complex8/Examples/example.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/example.F -------------------------------------------------------------------------------- /complex8/Examples/example.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/example.in -------------------------------------------------------------------------------- /complex8/Examples/example_irl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/example_irl.F -------------------------------------------------------------------------------- /complex8/Examples/example_irl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/example_irl.in -------------------------------------------------------------------------------- /complex8/Examples/matvec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/matvec.F -------------------------------------------------------------------------------- /complex8/Examples/matvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/matvec.h -------------------------------------------------------------------------------- /complex8/Examples/mhd1280b.cua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Examples/mhd1280b.cua -------------------------------------------------------------------------------- /complex8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/Makefile -------------------------------------------------------------------------------- /complex8/cblasext.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/cblasext.F -------------------------------------------------------------------------------- /complex8/cgemm_ovwr.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/cgemm_ovwr.F -------------------------------------------------------------------------------- /complex8/cgetu0.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/cgetu0.F -------------------------------------------------------------------------------- /complex8/clanbpro.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/clanbpro.F -------------------------------------------------------------------------------- /complex8/clansvd.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/clansvd.F -------------------------------------------------------------------------------- /complex8/clansvd_irl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/clansvd_irl.F -------------------------------------------------------------------------------- /complex8/creorth.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/creorth.F -------------------------------------------------------------------------------- /complex8/critzvec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/critzvec.F -------------------------------------------------------------------------------- /complex8/csafescal.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/complex8/csafescal.F -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/configure -------------------------------------------------------------------------------- /double/Examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/Makefile -------------------------------------------------------------------------------- /double/Examples/Output/Sigma.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/Output/Sigma.ascii -------------------------------------------------------------------------------- /double/Examples/Output/Sigma_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/Output/Sigma_IRL.ascii -------------------------------------------------------------------------------- /double/Examples/Output/U.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/Output/U.ascii -------------------------------------------------------------------------------- /double/Examples/Output/U_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/Output/U_IRL.ascii -------------------------------------------------------------------------------- /double/Examples/Output/V.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/Output/V.ascii -------------------------------------------------------------------------------- /double/Examples/Output/V_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/Output/V_IRL.ascii -------------------------------------------------------------------------------- /double/Examples/compare.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/compare.F -------------------------------------------------------------------------------- /double/Examples/compare.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/compare.in -------------------------------------------------------------------------------- /double/Examples/compare_irl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/compare_irl.in -------------------------------------------------------------------------------- /double/Examples/example.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/example.F -------------------------------------------------------------------------------- /double/Examples/example.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/example.in -------------------------------------------------------------------------------- /double/Examples/example_irl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/example_irl.F -------------------------------------------------------------------------------- /double/Examples/example_irl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/example_irl.in -------------------------------------------------------------------------------- /double/Examples/illc1850.coord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/illc1850.coord -------------------------------------------------------------------------------- /double/Examples/illc1850.diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/illc1850.diag -------------------------------------------------------------------------------- /double/Examples/illc1850.rra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/illc1850.rra -------------------------------------------------------------------------------- /double/Examples/matvec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/matvec.F -------------------------------------------------------------------------------- /double/Examples/matvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Examples/matvec.h -------------------------------------------------------------------------------- /double/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/Makefile -------------------------------------------------------------------------------- /double/dblasext.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dblasext.F -------------------------------------------------------------------------------- /double/dbsvd.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dbsvd.F -------------------------------------------------------------------------------- /double/dgemm_ovwr.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dgemm_ovwr.F -------------------------------------------------------------------------------- /double/dgetu0.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dgetu0.F -------------------------------------------------------------------------------- /double/dlanbpro.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dlanbpro.F -------------------------------------------------------------------------------- /double/dlansvd.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dlansvd.F -------------------------------------------------------------------------------- /double/dlansvd_irl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dlansvd_irl.F -------------------------------------------------------------------------------- /double/dortho_rec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dortho_rec.F -------------------------------------------------------------------------------- /double/dreorth.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dreorth.F -------------------------------------------------------------------------------- /double/dritzvec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dritzvec.F -------------------------------------------------------------------------------- /double/dsafescal.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/double/dsafescal.F -------------------------------------------------------------------------------- /make.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/make.inc -------------------------------------------------------------------------------- /single/Examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/Makefile -------------------------------------------------------------------------------- /single/Examples/Output/Sigma.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/Output/Sigma.ascii -------------------------------------------------------------------------------- /single/Examples/Output/Sigma_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/Output/Sigma_IRL.ascii -------------------------------------------------------------------------------- /single/Examples/Output/U.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/Output/U.ascii -------------------------------------------------------------------------------- /single/Examples/Output/U_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/Output/U_IRL.ascii -------------------------------------------------------------------------------- /single/Examples/Output/V.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/Output/V.ascii -------------------------------------------------------------------------------- /single/Examples/Output/V_IRL.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/Output/V_IRL.ascii -------------------------------------------------------------------------------- /single/Examples/compare.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/compare.F -------------------------------------------------------------------------------- /single/Examples/compare.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/compare.in -------------------------------------------------------------------------------- /single/Examples/compare_irl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/compare_irl.in -------------------------------------------------------------------------------- /single/Examples/example.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/example.F -------------------------------------------------------------------------------- /single/Examples/example.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/example.in -------------------------------------------------------------------------------- /single/Examples/example_irl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/example_irl.F -------------------------------------------------------------------------------- /single/Examples/example_irl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/example_irl.in -------------------------------------------------------------------------------- /single/Examples/illc1850.coord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/illc1850.coord -------------------------------------------------------------------------------- /single/Examples/illc1850.diag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/illc1850.diag -------------------------------------------------------------------------------- /single/Examples/illc1850.rra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/illc1850.rra -------------------------------------------------------------------------------- /single/Examples/matvec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/matvec.F -------------------------------------------------------------------------------- /single/Examples/matvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Examples/matvec.h -------------------------------------------------------------------------------- /single/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/Makefile -------------------------------------------------------------------------------- /single/sblasext.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/sblasext.F -------------------------------------------------------------------------------- /single/sbsvd.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/sbsvd.F -------------------------------------------------------------------------------- /single/sgemm_ovwr.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/sgemm_ovwr.F -------------------------------------------------------------------------------- /single/sgetu0.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/sgetu0.F -------------------------------------------------------------------------------- /single/slanbpro.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/slanbpro.F -------------------------------------------------------------------------------- /single/slansvd.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/slansvd.F -------------------------------------------------------------------------------- /single/slansvd_irl.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/slansvd_irl.F -------------------------------------------------------------------------------- /single/sortho_rec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/sortho_rec.F -------------------------------------------------------------------------------- /single/sreorth.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/sreorth.F -------------------------------------------------------------------------------- /single/sritzvec.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/sritzvec.F -------------------------------------------------------------------------------- /single/ssafescal.F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmlarsen/propack/HEAD/single/ssafescal.F --------------------------------------------------------------------------------