/* Copyright (c) 2006, Michael Kazhdan and Matthew Bolitho All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the Johns Hopkins University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef __SPARSEMATRIX_HPP #define __SPARSEMATRIX_HPP #if defined __GNUC__ # pragma GCC system_header #endif #include "vector.h" #include "allocator.h" namespace pcl { namespace poisson { template struct MatrixEntry { MatrixEntry( void ) { N =-1; Value = 0; } MatrixEntry( int i ) { N = i; Value = 0; } int N; T Value; }; template class SparseMatrix { private: bool _contiguous; int _maxEntriesPerRow; static int UseAlloc; public: static Allocator > internalAllocator; static int UseAllocator(void); static void SetAllocator( int blockSize ); int rows; int* rowSizes; MatrixEntry** m_ppElements; MatrixEntry< T >* operator[] ( int idx ) { return m_ppElements[idx]; } const MatrixEntry< T >* operator[] ( int idx ) const { return m_ppElements[idx]; } SparseMatrix( void ); SparseMatrix( int rows ); SparseMatrix( int rows , int maxEntriesPerRow ); void Resize( int rows ); void Resize( int rows , int maxEntriesPerRow ); void SetRowSize( int row , int count ); int Entries( void ) const; SparseMatrix( const SparseMatrix& M ); ~SparseMatrix(); void SetZero(); void SetIdentity(); SparseMatrix& operator = (const SparseMatrix& M); SparseMatrix operator * (const T& V) const; SparseMatrix& operator *= (const T& V); SparseMatrix operator * (const SparseMatrix& M) const; SparseMatrix Multiply( const SparseMatrix& M ) const; SparseMatrix MultiplyTranspose( const SparseMatrix& Mt ) const; template Vector operator * (const Vector& V) const; template Vector Multiply( const Vector& V ) const; template void Multiply( const Vector& In , Vector& Out , int threads=1 ) const; SparseMatrix Transpose() const; static int Solve (const SparseMatrix& M,const Vector& b, int iters,Vector& solution,const T eps=1e-8); template static int SolveSymmetric( const SparseMatrix& M , const Vector& b , int iters , Vector& solution , const T2 eps=1e-8 , int reset=1 , int threads=1 ); bool write( FILE* fp ) const; bool write( const char* fileName ) const; bool read( FILE* fp ); bool read( const char* fileName ); }; template< class T2 > struct MapReduceVector { private: int _dim; public: std::vector< T2* > out; MapReduceVector( void ) { _dim = 0; } ~MapReduceVector( void ) { if( _dim ) for( int t=0 ; t class SparseSymmetricMatrix : public SparseMatrix< T > { public: template< class T2 > Vector< T2 > operator * ( const Vector& V ) const; template< class T2 > Vector< T2 > Multiply( const Vector& V ) const; template< class T2 > void Multiply( const Vector& In, Vector& Out , bool addDCTerm=false ) const; template< class T2 > void Multiply( const Vector& In, Vector& Out , MapReduceVector< T2 >& OutScratch , bool addDCTerm=false ) const; template< class T2 > void Multiply( const Vector& In, Vector& Out , std::vector< T2* >& OutScratch , const std::vector< int >& bounds ) const; template< class T2 > static int Solve( const SparseSymmetricMatrix& M , const Vector& b , int iters , Vector& solution , T2 eps=1e-8 , int reset=1 , int threads=0 , bool addDCTerm=false , bool solveNormal=false ); template< class T2 > static int Solve( const SparseSymmetricMatrix& M , const Vector& b , int iters , Vector& solution , MapReduceVector& scratch , T2 eps=1e-8 , int reset=1 , bool addDCTerm=false , bool solveNormal=false ); #if defined _WIN32 && !defined __MINGW32__ template< class T2 > static int SolveAtomic( const SparseSymmetricMatrix& M , const Vector& b , int iters , Vector& solution , T2 eps=1e-8 , int reset=1 , int threads=0 , bool solveNormal=false ); #endif // _WIN32 || __MINGW32__ template static int Solve( const SparseSymmetricMatrix& M , const Vector& diagonal , const Vector& b , int iters , Vector& solution , int reset=1 ); template< class T2 > void getDiagonal( Vector< T2 >& diagonal ) const; }; } } #include "sparse_matrix.hpp" #endif