├── LICENSE ├── MMF ├── MMF.cpp ├── MMF.hpp ├── MMF.x.cpp ├── MMF.x.hpp ├── MMFchannel.cpp ├── MMFchannel.hpp ├── MMFcompress.cpp ├── MMFmatrix.cpp ├── MMFmatrix.hpp ├── MMFparams.cpp ├── MMFparams.hpp ├── MMFprocess.cpp ├── MMFprocess.hpp ├── MMFremap.cpp ├── MMFremap.hpp ├── MMFsave.cpp ├── MMFstage.cpp ├── MMFstage.hpp ├── MMFstageParams.hpp ├── Makefile ├── Wtransform.cpp ├── Wtransform.hpp ├── testCompressionMap.cpp ├── testCumulativeError.cpp ├── testElimination.cpp ├── testMMF.cpp ├── testMMFgraph.cpp ├── testMMFprod.cpp └── timeMMFcompress.cpp ├── MMFbase.hpp ├── MMFglobal.hpp ├── Makefile ├── Makefile.options ├── README.md ├── blocked ├── BlockedMatrix.cpp ├── BlockedMatrix.hpp ├── BlockedRemap.cpp ├── BlockedRemap.hpp ├── BlockedVector.cpp ├── BlockedVector.hpp ├── Makefile ├── Street.cpp ├── Street.hpp ├── Tower.cpp ├── Tower.hpp ├── testBlockedMatrix.cpp ├── testBlockedRemap.cpp ├── testBofstream.cpp ├── testReblocking.cpp └── testTower.cpp ├── filetypes ├── DenseMatrixFile.cpp ├── DenseMatrixFile.hpp ├── DenseMatrixFileASCII.cpp ├── DenseMatrixFileASCII.hpp ├── DenseMatrixFileMatlab.cpp ├── DenseMatrixFileMatlab.hpp ├── Makefile ├── MatrixFile.hpp ├── SparseMatrixFile.cpp ├── SparseMatrixFile.hpp ├── SparseMatrixFileASCII.cpp ├── SparseMatrixFileASCII.hpp ├── SparseMatrixFileMatlab.cpp ├── SparseMatrixFileMatlab.hpp ├── testDenseMatrixFile.cpp ├── testMatio.cpp ├── testMatlabFile.cpp ├── testSparseMatlabFile.cpp └── testSparseMatrixFile.cpp ├── license.txt ├── matrices ├── Cmatrix.cpp ├── Cmatrix.hpp ├── Cvector.cpp ├── Cvector.hpp ├── DenseVector.hpp ├── EigenAdaptors.hpp ├── Makefile ├── Matrix.cpp ├── Matrix.hpp ├── MatrixX.cpp ├── MatrixX.hpp ├── Remap.cpp ├── Remap.hpp ├── SparseVector.hpp ├── Vector.cpp ├── Vector.hpp ├── Vectorh.cpp ├── Vectorh.hpp ├── Vectorl.cpp ├── Vectorl.hpp ├── Vectorv.cpp ├── Vectorv.hpp ├── testCmatrix.cpp ├── testMatrixX.cpp ├── testRemap.cpp ├── testRotations.cpp ├── testVector.cpp └── timeMatrixX.cpp └── utility ├── Bifstream.cpp ├── Bifstream.hpp ├── Bofstream.cpp ├── Bofstream.hpp ├── Clusters.cpp ├── Clusters.hpp ├── ElementaryRotation.hpp ├── GivensRotation.cpp ├── GivensRotation.hpp ├── KpointRotation.cpp ├── KpointRotation.hpp ├── Log.cpp ├── Log.hpp ├── Makefile ├── MultiLoop.cpp ├── MultiLoop.hpp ├── Rotation.hpp ├── Rstream.cpp ├── Rstream.hpp ├── Serializable.cpp ├── Serializable.hpp ├── ThreadBank.cpp ├── ThreadBank.hpp ├── ThreadBank2.cpp ├── ThreadBank2.hpp ├── ThreadManager.cpp ├── ThreadManager.hpp ├── TopkList.cpp ├── TopkList.hpp ├── gate.hpp ├── testBofstream.cpp ├── testLog.cpp ├── testRotation.cpp ├── testRstream.cpp ├── testThreadBank.cpp └── testThreadBank2.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/LICENSE -------------------------------------------------------------------------------- /MMF/MMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMF.cpp -------------------------------------------------------------------------------- /MMF/MMF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMF.hpp -------------------------------------------------------------------------------- /MMF/MMF.x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMF.x.cpp -------------------------------------------------------------------------------- /MMF/MMF.x.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMF.x.hpp -------------------------------------------------------------------------------- /MMF/MMFchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFchannel.cpp -------------------------------------------------------------------------------- /MMF/MMFchannel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFchannel.hpp -------------------------------------------------------------------------------- /MMF/MMFcompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFcompress.cpp -------------------------------------------------------------------------------- /MMF/MMFmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFmatrix.cpp -------------------------------------------------------------------------------- /MMF/MMFmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFmatrix.hpp -------------------------------------------------------------------------------- /MMF/MMFparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFparams.cpp -------------------------------------------------------------------------------- /MMF/MMFparams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFparams.hpp -------------------------------------------------------------------------------- /MMF/MMFprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFprocess.cpp -------------------------------------------------------------------------------- /MMF/MMFprocess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFprocess.hpp -------------------------------------------------------------------------------- /MMF/MMFremap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFremap.cpp -------------------------------------------------------------------------------- /MMF/MMFremap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFremap.hpp -------------------------------------------------------------------------------- /MMF/MMFsave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFsave.cpp -------------------------------------------------------------------------------- /MMF/MMFstage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFstage.cpp -------------------------------------------------------------------------------- /MMF/MMFstage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFstage.hpp -------------------------------------------------------------------------------- /MMF/MMFstageParams.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/MMFstageParams.hpp -------------------------------------------------------------------------------- /MMF/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/Makefile -------------------------------------------------------------------------------- /MMF/Wtransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/Wtransform.cpp -------------------------------------------------------------------------------- /MMF/Wtransform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/Wtransform.hpp -------------------------------------------------------------------------------- /MMF/testCompressionMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/testCompressionMap.cpp -------------------------------------------------------------------------------- /MMF/testCumulativeError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/testCumulativeError.cpp -------------------------------------------------------------------------------- /MMF/testElimination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/testElimination.cpp -------------------------------------------------------------------------------- /MMF/testMMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/testMMF.cpp -------------------------------------------------------------------------------- /MMF/testMMFgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/testMMFgraph.cpp -------------------------------------------------------------------------------- /MMF/testMMFprod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/testMMFprod.cpp -------------------------------------------------------------------------------- /MMF/timeMMFcompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMF/timeMMFcompress.cpp -------------------------------------------------------------------------------- /MMFbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMFbase.hpp -------------------------------------------------------------------------------- /MMFglobal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/MMFglobal.hpp -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/Makefile.options -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/README.md -------------------------------------------------------------------------------- /blocked/BlockedMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/BlockedMatrix.cpp -------------------------------------------------------------------------------- /blocked/BlockedMatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/BlockedMatrix.hpp -------------------------------------------------------------------------------- /blocked/BlockedRemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/BlockedRemap.cpp -------------------------------------------------------------------------------- /blocked/BlockedRemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/BlockedRemap.hpp -------------------------------------------------------------------------------- /blocked/BlockedVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/BlockedVector.cpp -------------------------------------------------------------------------------- /blocked/BlockedVector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/BlockedVector.hpp -------------------------------------------------------------------------------- /blocked/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/Makefile -------------------------------------------------------------------------------- /blocked/Street.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/Street.cpp -------------------------------------------------------------------------------- /blocked/Street.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/Street.hpp -------------------------------------------------------------------------------- /blocked/Tower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/Tower.cpp -------------------------------------------------------------------------------- /blocked/Tower.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/Tower.hpp -------------------------------------------------------------------------------- /blocked/testBlockedMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/testBlockedMatrix.cpp -------------------------------------------------------------------------------- /blocked/testBlockedRemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/testBlockedRemap.cpp -------------------------------------------------------------------------------- /blocked/testBofstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/testBofstream.cpp -------------------------------------------------------------------------------- /blocked/testReblocking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/testReblocking.cpp -------------------------------------------------------------------------------- /blocked/testTower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/blocked/testTower.cpp -------------------------------------------------------------------------------- /filetypes/DenseMatrixFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/DenseMatrixFile.cpp -------------------------------------------------------------------------------- /filetypes/DenseMatrixFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/DenseMatrixFile.hpp -------------------------------------------------------------------------------- /filetypes/DenseMatrixFileASCII.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/DenseMatrixFileASCII.cpp -------------------------------------------------------------------------------- /filetypes/DenseMatrixFileASCII.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/DenseMatrixFileASCII.hpp -------------------------------------------------------------------------------- /filetypes/DenseMatrixFileMatlab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/DenseMatrixFileMatlab.cpp -------------------------------------------------------------------------------- /filetypes/DenseMatrixFileMatlab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/DenseMatrixFileMatlab.hpp -------------------------------------------------------------------------------- /filetypes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/Makefile -------------------------------------------------------------------------------- /filetypes/MatrixFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/MatrixFile.hpp -------------------------------------------------------------------------------- /filetypes/SparseMatrixFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/SparseMatrixFile.cpp -------------------------------------------------------------------------------- /filetypes/SparseMatrixFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/SparseMatrixFile.hpp -------------------------------------------------------------------------------- /filetypes/SparseMatrixFileASCII.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/SparseMatrixFileASCII.cpp -------------------------------------------------------------------------------- /filetypes/SparseMatrixFileASCII.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/SparseMatrixFileASCII.hpp -------------------------------------------------------------------------------- /filetypes/SparseMatrixFileMatlab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/SparseMatrixFileMatlab.cpp -------------------------------------------------------------------------------- /filetypes/SparseMatrixFileMatlab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/SparseMatrixFileMatlab.hpp -------------------------------------------------------------------------------- /filetypes/testDenseMatrixFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/testDenseMatrixFile.cpp -------------------------------------------------------------------------------- /filetypes/testMatio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/testMatio.cpp -------------------------------------------------------------------------------- /filetypes/testMatlabFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/testMatlabFile.cpp -------------------------------------------------------------------------------- /filetypes/testSparseMatlabFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/testSparseMatlabFile.cpp -------------------------------------------------------------------------------- /filetypes/testSparseMatrixFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/filetypes/testSparseMatrixFile.cpp -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/license.txt -------------------------------------------------------------------------------- /matrices/Cmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Cmatrix.cpp -------------------------------------------------------------------------------- /matrices/Cmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Cmatrix.hpp -------------------------------------------------------------------------------- /matrices/Cvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Cvector.cpp -------------------------------------------------------------------------------- /matrices/Cvector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Cvector.hpp -------------------------------------------------------------------------------- /matrices/DenseVector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/DenseVector.hpp -------------------------------------------------------------------------------- /matrices/EigenAdaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/EigenAdaptors.hpp -------------------------------------------------------------------------------- /matrices/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Makefile -------------------------------------------------------------------------------- /matrices/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Matrix.cpp -------------------------------------------------------------------------------- /matrices/Matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Matrix.hpp -------------------------------------------------------------------------------- /matrices/MatrixX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/MatrixX.cpp -------------------------------------------------------------------------------- /matrices/MatrixX.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/MatrixX.hpp -------------------------------------------------------------------------------- /matrices/Remap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Remap.cpp -------------------------------------------------------------------------------- /matrices/Remap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Remap.hpp -------------------------------------------------------------------------------- /matrices/SparseVector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/SparseVector.hpp -------------------------------------------------------------------------------- /matrices/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Vector.cpp -------------------------------------------------------------------------------- /matrices/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Vector.hpp -------------------------------------------------------------------------------- /matrices/Vectorh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Vectorh.cpp -------------------------------------------------------------------------------- /matrices/Vectorh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Vectorh.hpp -------------------------------------------------------------------------------- /matrices/Vectorl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Vectorl.cpp -------------------------------------------------------------------------------- /matrices/Vectorl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Vectorl.hpp -------------------------------------------------------------------------------- /matrices/Vectorv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Vectorv.cpp -------------------------------------------------------------------------------- /matrices/Vectorv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/Vectorv.hpp -------------------------------------------------------------------------------- /matrices/testCmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/testCmatrix.cpp -------------------------------------------------------------------------------- /matrices/testMatrixX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/testMatrixX.cpp -------------------------------------------------------------------------------- /matrices/testRemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/testRemap.cpp -------------------------------------------------------------------------------- /matrices/testRotations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/testRotations.cpp -------------------------------------------------------------------------------- /matrices/testVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/testVector.cpp -------------------------------------------------------------------------------- /matrices/timeMatrixX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/matrices/timeMatrixX.cpp -------------------------------------------------------------------------------- /utility/Bifstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Bifstream.cpp -------------------------------------------------------------------------------- /utility/Bifstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Bifstream.hpp -------------------------------------------------------------------------------- /utility/Bofstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Bofstream.cpp -------------------------------------------------------------------------------- /utility/Bofstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Bofstream.hpp -------------------------------------------------------------------------------- /utility/Clusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Clusters.cpp -------------------------------------------------------------------------------- /utility/Clusters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Clusters.hpp -------------------------------------------------------------------------------- /utility/ElementaryRotation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/ElementaryRotation.hpp -------------------------------------------------------------------------------- /utility/GivensRotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/GivensRotation.cpp -------------------------------------------------------------------------------- /utility/GivensRotation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/GivensRotation.hpp -------------------------------------------------------------------------------- /utility/KpointRotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/KpointRotation.cpp -------------------------------------------------------------------------------- /utility/KpointRotation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/KpointRotation.hpp -------------------------------------------------------------------------------- /utility/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Log.cpp -------------------------------------------------------------------------------- /utility/Log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Log.hpp -------------------------------------------------------------------------------- /utility/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Makefile -------------------------------------------------------------------------------- /utility/MultiLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/MultiLoop.cpp -------------------------------------------------------------------------------- /utility/MultiLoop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/MultiLoop.hpp -------------------------------------------------------------------------------- /utility/Rotation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Rotation.hpp -------------------------------------------------------------------------------- /utility/Rstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Rstream.cpp -------------------------------------------------------------------------------- /utility/Rstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Rstream.hpp -------------------------------------------------------------------------------- /utility/Serializable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Serializable.cpp -------------------------------------------------------------------------------- /utility/Serializable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/Serializable.hpp -------------------------------------------------------------------------------- /utility/ThreadBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/ThreadBank.cpp -------------------------------------------------------------------------------- /utility/ThreadBank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/ThreadBank.hpp -------------------------------------------------------------------------------- /utility/ThreadBank2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/ThreadBank2.cpp -------------------------------------------------------------------------------- /utility/ThreadBank2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/ThreadBank2.hpp -------------------------------------------------------------------------------- /utility/ThreadManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/ThreadManager.cpp -------------------------------------------------------------------------------- /utility/ThreadManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/ThreadManager.hpp -------------------------------------------------------------------------------- /utility/TopkList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/TopkList.cpp -------------------------------------------------------------------------------- /utility/TopkList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/TopkList.hpp -------------------------------------------------------------------------------- /utility/gate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/gate.hpp -------------------------------------------------------------------------------- /utility/testBofstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/testBofstream.cpp -------------------------------------------------------------------------------- /utility/testLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/testLog.cpp -------------------------------------------------------------------------------- /utility/testRotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/testRotation.cpp -------------------------------------------------------------------------------- /utility/testRstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/testRstream.cpp -------------------------------------------------------------------------------- /utility/testThreadBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/testThreadBank.cpp -------------------------------------------------------------------------------- /utility/testThreadBank2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risi-kondor/pMMF/HEAD/utility/testThreadBank2.cpp --------------------------------------------------------------------------------