├── .gitignore ├── Doxyfile ├── GMRES.h ├── LICENSE ├── README.md ├── doxygenHeader.tex ├── example ├── choleskyTest.m ├── makefile ├── poisson.cpp ├── poisson.h ├── preconditioner.cpp ├── preconditioner.h ├── solution.cpp ├── solution.h └── systemSolver.cpp ├── example2D ├── choleskyTest.m ├── makefile ├── poisson.cpp ├── poisson.h ├── preconditioner.cpp ├── preconditioner.h ├── solution.cpp ├── solution.h └── systemSolver.cpp ├── latex ├── GMRES_8h.tex ├── GMRES_8h_source.tex ├── Makefile ├── annotated.tex ├── bibTmpFile_1.bib ├── citelist.tex ├── classArrayUtils.tex ├── doxygen.sty ├── files.tex ├── index.tex ├── longtable_doxygen.sty ├── md_README.tex ├── overview.tex ├── refman.brf ├── refman.idx ├── refman.ilg ├── refman.ind ├── refman.pdf ├── refman.tex ├── tabu_doxygen.sty ├── util_8h.tex └── util_8h_source.tex ├── linearSystems.bib ├── overview.tex ├── util.cpp └── util.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/Doxyfile -------------------------------------------------------------------------------- /GMRES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/GMRES.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/README.md -------------------------------------------------------------------------------- /doxygenHeader.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/doxygenHeader.tex -------------------------------------------------------------------------------- /example/choleskyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example/choleskyTest.m -------------------------------------------------------------------------------- /example/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example/makefile -------------------------------------------------------------------------------- /example/poisson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example/poisson.cpp -------------------------------------------------------------------------------- /example/poisson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example/poisson.h -------------------------------------------------------------------------------- /example/preconditioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example/preconditioner.cpp -------------------------------------------------------------------------------- /example/preconditioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example/preconditioner.h -------------------------------------------------------------------------------- /example/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example/solution.cpp -------------------------------------------------------------------------------- /example/solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example/solution.h -------------------------------------------------------------------------------- /example/systemSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example/systemSolver.cpp -------------------------------------------------------------------------------- /example2D/choleskyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example2D/choleskyTest.m -------------------------------------------------------------------------------- /example2D/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example2D/makefile -------------------------------------------------------------------------------- /example2D/poisson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example2D/poisson.cpp -------------------------------------------------------------------------------- /example2D/poisson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example2D/poisson.h -------------------------------------------------------------------------------- /example2D/preconditioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example2D/preconditioner.cpp -------------------------------------------------------------------------------- /example2D/preconditioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example2D/preconditioner.h -------------------------------------------------------------------------------- /example2D/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example2D/solution.cpp -------------------------------------------------------------------------------- /example2D/solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example2D/solution.h -------------------------------------------------------------------------------- /example2D/systemSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/example2D/systemSolver.cpp -------------------------------------------------------------------------------- /latex/GMRES_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/GMRES_8h.tex -------------------------------------------------------------------------------- /latex/GMRES_8h_source.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/GMRES_8h_source.tex -------------------------------------------------------------------------------- /latex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/Makefile -------------------------------------------------------------------------------- /latex/annotated.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/annotated.tex -------------------------------------------------------------------------------- /latex/bibTmpFile_1.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/bibTmpFile_1.bib -------------------------------------------------------------------------------- /latex/citelist.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/citelist.tex -------------------------------------------------------------------------------- /latex/classArrayUtils.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/classArrayUtils.tex -------------------------------------------------------------------------------- /latex/doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/doxygen.sty -------------------------------------------------------------------------------- /latex/files.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/files.tex -------------------------------------------------------------------------------- /latex/index.tex: -------------------------------------------------------------------------------- 1 | 2 | \input{overview} 3 | 4 | 5 | \DoxyHorRuler{0} 6 | -------------------------------------------------------------------------------- /latex/longtable_doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/longtable_doxygen.sty -------------------------------------------------------------------------------- /latex/md_README.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/md_README.tex -------------------------------------------------------------------------------- /latex/overview.tex: -------------------------------------------------------------------------------- 1 | ../overview.tex -------------------------------------------------------------------------------- /latex/refman.brf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/refman.brf -------------------------------------------------------------------------------- /latex/refman.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/refman.idx -------------------------------------------------------------------------------- /latex/refman.ilg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/refman.ilg -------------------------------------------------------------------------------- /latex/refman.ind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/refman.ind -------------------------------------------------------------------------------- /latex/refman.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/refman.pdf -------------------------------------------------------------------------------- /latex/refman.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/refman.tex -------------------------------------------------------------------------------- /latex/tabu_doxygen.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/tabu_doxygen.sty -------------------------------------------------------------------------------- /latex/util_8h.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/util_8h.tex -------------------------------------------------------------------------------- /latex/util_8h_source.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/latex/util_8h_source.tex -------------------------------------------------------------------------------- /linearSystems.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/linearSystems.bib -------------------------------------------------------------------------------- /overview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/overview.tex -------------------------------------------------------------------------------- /util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/util.cpp -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KellyBlack/GMRES/HEAD/util.h --------------------------------------------------------------------------------