// // localdiag.cc // // Copyright (C) 1996 Limit Point Systems, Inc. // // Author: Curtis Janssen // Maintainer: LPS // // This file is part of the SC Toolkit. // // The SC Toolkit is free software; you can redistribute it and/or modify // it under the terms of the GNU Library General Public License as published by // the Free Software Foundation; either version 2, or (at your option) // any later version. // // The SC Toolkit is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Library General Public License for more details. // // You should have received a copy of the GNU Library General Public License // along with the SC Toolkit; see the file COPYING.LIB. If not, write to // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // // The U.S. Government is granted a limited license as per AL 91-7. // #include #include #include #include #include #include using namespace std; using namespace sc; ///////////////////////////////////////////////////////////////////////////// // LocalDiagSCMatrix member functions static ClassDesc LocalDiagSCMatrix_cd( typeid(LocalDiagSCMatrix),"LocalDiagSCMatrix",1,"public DiagSCMatrix", 0, 0, 0); LocalDiagSCMatrix::LocalDiagSCMatrix(const RefSCDimension&a, LocalSCMatrixKit *kit): DiagSCMatrix(a,kit) { resize(a->n()); } LocalDiagSCMatrix::~LocalDiagSCMatrix() { } void LocalDiagSCMatrix::resize(int n) { block = new SCMatrixDiagBlock(0,n); } double * LocalDiagSCMatrix::get_data() { return block->data; } double LocalDiagSCMatrix::get_element(int i) const { return block->data[i]; } void LocalDiagSCMatrix::set_element(int i,double a) { block->data[i] = a; } void LocalDiagSCMatrix::accumulate_element(int i,double a) { block->data[i] += a; } void LocalDiagSCMatrix::accumulate(const DiagSCMatrix*a) { // make sure that the argument is of the correct type const LocalDiagSCMatrix* la = require_dynamic_cast(a,"LocalDiagSCMatrix::accumulate"); // make sure that the dimensions match if (!dim()->equiv(la->dim())) { ExEnv::errn() << indent << "LocalDiagSCMatrix::accumulate(SCMatrix*a): " << "dimensions don't match\n"; abort(); } int nelem = n(); for (int i=0; idata[i] += la->block->data[i]; } double LocalDiagSCMatrix::invert_this() { double det = 1.0; int nelem = n(); double*data = block->data; for (int i=0; idata; for (int i=0; i < nelem; i++) { det *= data[i]; } return det; } double LocalDiagSCMatrix::trace() { double det = 0; int nelem = n(); double *data = block->data; for (int i=0; i < nelem; i++) { det += data[i]; } return det; } void LocalDiagSCMatrix::gen_invert_this() { int nelem = n(); double *data = block->data; for (int i=0; i < nelem; i++) { if (fabs(data[i]) > 1.0e-8) data[i] = 1.0/data[i]; else data[i] = 0; } } void LocalDiagSCMatrix::element_op(const Ref& op) { op->process_spec_diag(block.pointer()); } void LocalDiagSCMatrix::element_op(const Ref& op, DiagSCMatrix* m) { LocalDiagSCMatrix *lm = require_dynamic_cast(m,"LocalDiagSCMatrix::element_op"); if (!dim()->equiv(lm->dim())) { ExEnv::errn() << indent << "LocalDiagSCMatrix: bad element_op\n"; abort(); } op->process_spec_diag(block.pointer(), lm->block.pointer()); } void LocalDiagSCMatrix::element_op(const Ref& op, DiagSCMatrix* m,DiagSCMatrix* n) { LocalDiagSCMatrix *lm = require_dynamic_cast(m,"LocalDiagSCMatrix::element_op"); LocalDiagSCMatrix *ln = require_dynamic_cast(n,"LocalDiagSCMatrix::element_op"); if (!dim()->equiv(lm->dim()) || !dim()->equiv(ln->dim())) { ExEnv::errn() << indent << "LocalDiagSCMatrix: bad element_op\n"; abort(); } op->process_spec_diag(block.pointer(), lm->block.pointer(), ln->block.pointer()); } // from Ed Seidl at the NIH (with a bit of hacking) void LocalDiagSCMatrix::vprint(const char *title, ostream& os, int prec) const { int i; int lwidth; double max=this->maxabs(); max = (max==0.0) ? 1.0 : log10(max); if (max < 0.0) max=1.0; lwidth = prec + 5 + (int) max; if (title) os << endl << indent << title << endl; else os << endl; if (n()==0) { os << indent << "empty matrix\n"; return; } for (i=0; idata[i]); os << endl; os.flush(); } Ref LocalDiagSCMatrix::local_blocks(SCMatrixSubblockIter::Access access) { if (messagegrp()->n() > 1) { ExEnv::errn() << indent << "LocalDiagSCMatrix::local_blocks: not valid for local matrices" << endl; abort(); } Ref iter = new SCMatrixSimpleSubblockIter(access, block.pointer()); return iter; } Ref LocalDiagSCMatrix::all_blocks(SCMatrixSubblockIter::Access access) { if (access == SCMatrixSubblockIter::Write) { ExEnv::errn() << indent << "LocalDiagSCMatrix::all_blocks: " << "Write access permitted for local blocks only" << endl; abort(); } return local_blocks(access); } ///////////////////////////////////////////////////////////////////////////// // Local Variables: // mode: c++ // c-file-style: "CLJ" // End: