00001 // This file is part of the imaging2 class library. 00002 // 00003 // University of Innsbruck, Infmath Imaging, 2009. 00004 // http://infmath.uibk.ac.at 00005 // 00006 // All rights reserved. 00007 00008 00009 #ifndef SOLVER_UTILTIES_H 00010 #define SOLVER_UTILTIES_H 00011 00012 #include <core/imaging2.hpp> 00013 00014 namespace imaging 00015 { 00017 void sparse2raw(const ublas::compressed_matrix<float_t> & matrix, std::vector<float_t> & values, std::vector<int> & column_indices, std::vector<int> & block_indices); 00019 } 00020 00021 #endif