├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Data └── scat.dat ├── Doxyfile ├── INSTALL ├── README ├── app ├── .cvsignore ├── mainSimplestLS.cpp └── mainSimplestMG.cpp ├── doc ├── .cvsignore └── images │ ├── SINTEFlogo.gif │ └── Utladalen.jpg ├── include ├── BitMatrix.h ├── LSsystem.h ├── MGsystem.h ├── MatSparse.h ├── SmoothMatrix.h └── doxymain.h └── src ├── BitMatrix.cpp ├── LSsystem.cpp ├── MGsystem.cpp ├── MatSparse.cpp └── SmoothMatrix.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | doc/html -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/ChangeLog -------------------------------------------------------------------------------- /Data/scat.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/Data/scat.dat -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/Doxyfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/README -------------------------------------------------------------------------------- /app/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/app/.cvsignore -------------------------------------------------------------------------------- /app/mainSimplestLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/app/mainSimplestLS.cpp -------------------------------------------------------------------------------- /app/mainSimplestMG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/app/mainSimplestMG.cpp -------------------------------------------------------------------------------- /doc/.cvsignore: -------------------------------------------------------------------------------- 1 | html 2 | latex 3 | -------------------------------------------------------------------------------- /doc/images/SINTEFlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/doc/images/SINTEFlogo.gif -------------------------------------------------------------------------------- /doc/images/Utladalen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/doc/images/Utladalen.jpg -------------------------------------------------------------------------------- /include/BitMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/include/BitMatrix.h -------------------------------------------------------------------------------- /include/LSsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/include/LSsystem.h -------------------------------------------------------------------------------- /include/MGsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/include/MGsystem.h -------------------------------------------------------------------------------- /include/MatSparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/include/MatSparse.h -------------------------------------------------------------------------------- /include/SmoothMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/include/SmoothMatrix.h -------------------------------------------------------------------------------- /include/doxymain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/include/doxymain.h -------------------------------------------------------------------------------- /src/BitMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/src/BitMatrix.cpp -------------------------------------------------------------------------------- /src/LSsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/src/LSsystem.cpp -------------------------------------------------------------------------------- /src/MGsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/src/MGsystem.cpp -------------------------------------------------------------------------------- /src/MatSparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/src/MatSparse.cpp -------------------------------------------------------------------------------- /src/SmoothMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SINTEF-Geometry/LSMG/HEAD/src/SmoothMatrix.cpp --------------------------------------------------------------------------------