1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkFEMLinearSystemWrapperVNL.cxx,v $
Language: C++
Date: $Date: 2009-01-30 21:10:11 $
Version: $Revision: 1.16 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
// disable debug warnings in MS compiler
#ifdef _MSC_VER
#pragma warning(disable: 4786)
#endif
#include "itkMacro.h"
#include "itkFEMLinearSystemWrapperVNL.h"
#include <iostream>
namespace itk {
namespace fem {
void LinearSystemWrapperVNL::InitializeMatrix(unsigned int matrixIndex)
{
/* FIX ME: error checking */
// allocate if necessary
if (m_Matrices == 0)
{
m_Matrices = new MatrixHolder(m_NumberOfMatrices);
if (m_Matrices == NULL)
{
itkGenericExceptionMacro(<< "LinearSystemWrapperVNL::InitializeMatrix(): m_Matrices allocation failed.");
}
}
// out with old, in with new
if ( (*m_Matrices)[matrixIndex] != 0 )
{
delete (*m_Matrices)[matrixIndex];
}
(*m_Matrices)[matrixIndex] = new MatrixRepresentation(this->GetSystemOrder(), this->GetSystemOrder() );
if ( (*m_Matrices)[matrixIndex] == NULL)
{
itkGenericExceptionMacro(<< "LinearSystemWrapperVNL::InitializeMatrix(): allocation of (*m_Matrices)[" << matrixIndex << "] failed.");
}
return;
}
bool LinearSystemWrapperVNL::IsMatrixInitialized(unsigned int matrixIndex)
{
if (!m_Matrices) return false;
if ( !((*m_Matrices)[matrixIndex]) ) return false;
return true;
}
void LinearSystemWrapperVNL::DestroyMatrix(unsigned int matrixIndex)
{
if (m_Matrices == 0) return;
if ((*m_Matrices)[matrixIndex] == 0) return;
delete (*m_Matrices)[matrixIndex];
(*m_Matrices)[matrixIndex] = 0;
}
void LinearSystemWrapperVNL::InitializeVector(unsigned int vectorIndex)
{
// allocate if necessary
if (m_Vectors == 0)
{
m_Vectors = new std::vector< vnl_vector<Float>* >(m_NumberOfVectors);
if (m_Vectors == NULL)
{
itkGenericExceptionMacro(<< "InitializeVector(): m_Vectors memory allocation failed.");
}
}
// out with old, in with new
if ( (*m_Vectors)[vectorIndex] != 0)
{
delete (*m_Vectors)[vectorIndex];
}
(*m_Vectors)[vectorIndex] = new vnl_vector<Float>(this->GetSystemOrder());
if ( (*m_Vectors)[vectorIndex] == NULL)
{
itkGenericExceptionMacro(<< "InitializeVector(): allocation of (*m_Vectors)[" << vectorIndex << "] failed.");
}
(*m_Vectors)[vectorIndex]->fill(0.0);
return;
}
bool LinearSystemWrapperVNL::IsVectorInitialized(unsigned int vectorIndex)
{
if (!m_Vectors) return false;
if ( !(*m_Vectors)[vectorIndex] ) return false;
return true;
}
void LinearSystemWrapperVNL::DestroyVector(unsigned int vectorIndex)
{
if (m_Vectors == 0) return;
if ( (*m_Vectors)[vectorIndex] == 0) return;
delete (*m_Vectors)[vectorIndex];
(*m_Vectors)[vectorIndex] = 0;
}
void LinearSystemWrapperVNL::InitializeSolution(unsigned int solutionIndex)
{
// allocate if necessary
if (m_Solutions == 0)
{
m_Solutions = new std::vector< vnl_vector<Float>* >(m_NumberOfSolutions);
if (m_Solutions == NULL)
{
itkGenericExceptionMacro(<< "InitializeSolution(): m_Solutions memory allocation failed.");
}
}
// out with old, in with new
if ( (*m_Solutions)[solutionIndex] != 0)
{
delete (*m_Solutions)[solutionIndex];
}
(*m_Solutions)[solutionIndex] = new vnl_vector<Float>(this->GetSystemOrder());
if ( (*m_Solutions)[solutionIndex] == NULL)
{
itkGenericExceptionMacro(<< "InitializeSolution(): allocation of (*m_olutions)[" << solutionIndex << "] failed.");
}
(*m_Solutions)[solutionIndex]->fill(0.0);
return;
}
bool LinearSystemWrapperVNL::IsSolutionInitialized(unsigned int solutionIndex)
{
if (!m_Solutions) return false;
if ( !(*m_Solutions)[solutionIndex] ) return false;
return true;
}
void LinearSystemWrapperVNL::DestroySolution(unsigned int solutionIndex)
{
if (m_Solutions == 0) return;
if ( (*m_Solutions)[solutionIndex] == 0) return;
delete (*m_Solutions)[solutionIndex];
(*m_Solutions)[solutionIndex] = 0;
}
LinearSystemWrapperVNL::Float LinearSystemWrapperVNL::GetSolutionValue(unsigned int i, unsigned int SolutionIndex) const
{
if ( m_Solutions==0 ) return 0.0;
if ( ((*m_Solutions)[SolutionIndex])->size() <= i) return 0.0;
else return (*((*m_Solutions)[SolutionIndex]))(i);
}
void LinearSystemWrapperVNL::Solve(void)
{
if( (m_Matrices->size() == 0) || (m_Vectors->size() == 0) || (m_Solutions->size() == 0) )
{
itkGenericExceptionMacro(<< "LinearSystemWrapperVNL::Solve(): m_Matrices, m_Vectors and m_Solutions size's are all zero.");
}
/* use functions to make sure that zero based matrix, vector, & index store final system to solve */
/*
if (m_PrimaryMatrixSetupFunction != NULL) (*m_PrimaryMatrixSetupFunction)(static_cast<SuperClass*>(this));
if (m_PrimaryVectorSetupFunction != NULL) (*m_PrimaryVectorSetupFunction)(static_cast<SuperClass*>(this));
if (m_PrimarySolutionSetupFunction != NULL) (*m_PrimarySolutionSetupFunction)(static_cast<SuperClass*>(this));
*/
/*
* Solve the sparse system of linear equation and store the result in m_Solutions(0).
* Here we use the iterative least squares solver.
*/
// std::cout<<"Creating the vnl_sparse_matrix_linear_system object\n";
vnl_sparse_matrix_linear_system<Float> ls( (*((*m_Matrices)[0])), (*((*m_Vectors)[0])) );
// std::cout<<"Creating the vnl_lsqr object\n";
vnl_lsqr lsq(ls);
/*
* Set max number of iterations to 3*size of the K matrix.
* FIXME: There should be a better way to determine the number of iterations needed.
*/
lsq.set_max_iterations(3*this->GetSystemOrder());
// std::cout<<"Performing lsq.minimize\n";
lsq.minimize(*((*m_Solutions)[0]));
}
void LinearSystemWrapperVNL::SwapMatrices(unsigned int MatrixIndex1, unsigned int MatrixIndex2)
{
vnl_sparse_matrix<Float> *tmp;
tmp = (*m_Matrices)[MatrixIndex1];
(*m_Matrices)[MatrixIndex1] = (*m_Matrices)[MatrixIndex2];
(*m_Matrices)[MatrixIndex2] = tmp;
}
void LinearSystemWrapperVNL::SwapVectors(unsigned int VectorIndex1, unsigned int VectorIndex2)
{
vnl_vector<Float> *tmp;
tmp = (*m_Vectors)[VectorIndex1];
(*m_Vectors)[VectorIndex1] = (*m_Vectors)[VectorIndex2];
(*m_Vectors)[VectorIndex2] = tmp;
}
void LinearSystemWrapperVNL::SwapSolutions(unsigned int SolutionIndex1, unsigned int SolutionIndex2)
{
vnl_vector<Float> *tmp;
tmp = (*m_Solutions)[SolutionIndex1];
(*m_Solutions)[SolutionIndex1] = (*m_Solutions)[SolutionIndex2];
(*m_Solutions)[SolutionIndex2] = tmp;
}
void LinearSystemWrapperVNL::CopySolution2Vector(unsigned int SolutionIndex, unsigned int VectorIndex)
{
delete (*m_Vectors)[VectorIndex];
(*m_Vectors)[VectorIndex] = new vnl_vector<Float>( *((*m_Solutions)[SolutionIndex]) );
}
void LinearSystemWrapperVNL::CopyVector2Solution(unsigned int VectorIndex, unsigned int SolutionIndex)
{
delete (*m_Solutions)[SolutionIndex];
(*m_Solutions)[SolutionIndex] = new vnl_vector<Float>( *((*m_Vectors)[VectorIndex]) );
}
void LinearSystemWrapperVNL::MultiplyMatrixMatrix(unsigned int ResultMatrixIndex, unsigned int LeftMatrixIndex, unsigned int RightMatrixIndex)
{
delete (*m_Matrices)[ResultMatrixIndex];
(*m_Matrices)[ResultMatrixIndex] = new vnl_sparse_matrix<Float>( this->GetSystemOrder(), this->GetSystemOrder() );
((*m_Matrices)[LeftMatrixIndex])->mult( *((*m_Matrices)[RightMatrixIndex]), *((*m_Matrices)[ResultMatrixIndex]) );
}
void LinearSystemWrapperVNL::MultiplyMatrixVector(unsigned int ResultVectorIndex, unsigned int MatrixIndex, unsigned int VectorIndex)
{
delete (*m_Vectors)[ResultVectorIndex];
(*m_Vectors)[ResultVectorIndex] = new vnl_vector<Float>(this->GetSystemOrder());
((*m_Matrices)[MatrixIndex])->mult( *((*m_Vectors)[VectorIndex]), *((*m_Vectors)[ResultVectorIndex]) );
}
void LinearSystemWrapperVNL::ScaleMatrix(Float scale, unsigned int matrixIndex)
{
for ( ((*m_Matrices)[matrixIndex])->reset(); ((*m_Matrices)[matrixIndex])->next(); )
{
(*((*m_Matrices)[matrixIndex]))( ((*m_Matrices)[matrixIndex])->getrow(), ((*m_Matrices)[matrixIndex])->getcolumn() )
= scale * (*((*m_Matrices)[matrixIndex]))( ((*m_Matrices)[matrixIndex])->getrow(), ((*m_Matrices)[matrixIndex])->getcolumn() );
}
}
LinearSystemWrapperVNL::~LinearSystemWrapperVNL()
{
unsigned int i;
for (i=0; i<m_NumberOfMatrices; i++)
{
this->DestroyMatrix(i);
}
for (i=0; i<m_NumberOfVectors; i++)
{
this->DestroyVector(i);
}
for (i=0; i<m_NumberOfSolutions; i++)
{
this->DestroySolution(i);
}
delete m_Matrices;
delete m_Vectors;
delete m_Solutions;
}
}} // end namespace itk::fem
|