📄 localdiag.cc
字号:
//// localdiag.cc//// Copyright (C) 1996 Limit Point Systems, Inc.//// Author: Curtis Janssen <cljanss@limitpt.com>// 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 <math.h>#include <util/misc/formio.h>#include <util/keyval/keyval.h>#include <math/scmat/local.h>#include <math/scmat/cmatrix.h>#include <math/scmat/elemop.h>using namespace std;using namespace sc;/////////////////////////////////////////////////////////////////////////////// LocalDiagSCMatrix member functionsstatic 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(){}voidLocalDiagSCMatrix::resize(int n){ block = new SCMatrixDiagBlock(0,n);}double *LocalDiagSCMatrix::get_data(){ return block->data;}doubleLocalDiagSCMatrix::get_element(int i) const{ return block->data[i];}voidLocalDiagSCMatrix::set_element(int i,double a){ block->data[i] = a;}voidLocalDiagSCMatrix::accumulate_element(int i,double a){ block->data[i] += a;}voidLocalDiagSCMatrix::accumulate(const DiagSCMatrix*a){ // make sure that the argument is of the correct type const LocalDiagSCMatrix* la = require_dynamic_cast<const LocalDiagSCMatrix*>(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; i<nelem; i++) block->data[i] += la->block->data[i];}doubleLocalDiagSCMatrix::invert_this(){ double det = 1.0; int nelem = n(); double*data = block->data; for (int i=0; i<nelem; i++) { det *= data[i]; data[i] = 1.0/data[i]; } return det;}doubleLocalDiagSCMatrix::determ_this(){ double det = 1.0; int nelem = n(); double *data = block->data; for (int i=0; i < nelem; i++) { det *= data[i]; } return det;}doubleLocalDiagSCMatrix::trace(){ double det = 0; int nelem = n(); double *data = block->data; for (int i=0; i < nelem; i++) { det += data[i]; } return det;}voidLocalDiagSCMatrix::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; }}voidLocalDiagSCMatrix::element_op(const Ref<SCElementOp>& op){ op->process_spec_diag(block.pointer());}voidLocalDiagSCMatrix::element_op(const Ref<SCElementOp2>& op, DiagSCMatrix* m){ LocalDiagSCMatrix *lm = require_dynamic_cast<LocalDiagSCMatrix*>(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());}voidLocalDiagSCMatrix::element_op(const Ref<SCElementOp3>& op, DiagSCMatrix* m,DiagSCMatrix* n){ LocalDiagSCMatrix *lm = require_dynamic_cast<LocalDiagSCMatrix*>(m,"LocalDiagSCMatrix::element_op"); LocalDiagSCMatrix *ln = require_dynamic_cast<LocalDiagSCMatrix*>(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)voidLocalDiagSCMatrix::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; i<n(); i++) os << indent << scprintf("%5d %*.*f\n",i+1,lwidth,prec,block->data[i]); os << endl; os.flush();}Ref<SCMatrixSubblockIter>LocalDiagSCMatrix::local_blocks(SCMatrixSubblockIter::Access access){ if (messagegrp()->n() > 1) { ExEnv::errn() << indent << "LocalDiagSCMatrix::local_blocks: not valid for local matrices" << endl; abort(); } Ref<SCMatrixSubblockIter> iter = new SCMatrixSimpleSubblockIter(access, block.pointer()); return iter;}Ref<SCMatrixSubblockIter>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:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -