source: ThirdParty/mpqc_open/src/lib/math/scmat/localvect.cc@ 00f983

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_levmar Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 00f983 was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 9.0 KB
Line 
1//
2// localvect.cc
3//
4// Copyright (C) 1996 Limit Point Systems, Inc.
5//
6// Author: Curtis Janssen <cljanss@limitpt.com>
7// Maintainer: LPS
8//
9// This file is part of the SC Toolkit.
10//
11// The SC Toolkit is free software; you can redistribute it and/or modify
12// it under the terms of the GNU Library General Public License as published by
13// the Free Software Foundation; either version 2, or (at your option)
14// any later version.
15//
16// The SC Toolkit is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU Library General Public License for more details.
20//
21// You should have received a copy of the GNU Library General Public License
22// along with the SC Toolkit; see the file COPYING.LIB. If not, write to
23// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24//
25// The U.S. Government is granted a limited license as per AL 91-7.
26//
27
28#include <math.h>
29
30#include <util/misc/formio.h>
31#include <util/keyval/keyval.h>
32#include <math/scmat/local.h>
33#include <math/scmat/cmatrix.h>
34#include <math/scmat/elemop.h>
35
36using namespace std;
37using namespace sc;
38
39/////////////////////////////////////////////////////////////////////////////
40// LocalSCVector member functions
41
42static ClassDesc LocalSCVector_cd(
43 typeid(LocalSCVector),"LocalSCVector",1,"public SCVector",
44 0, 0, 0);
45
46LocalSCVector::LocalSCVector(const RefSCDimension&a,
47 LocalSCMatrixKit *kit):
48 SCVector(a,kit)
49{
50 resize(a->n());
51}
52
53void
54LocalSCVector::resize(int n)
55{
56 block = new SCVectorSimpleBlock(0,n);
57}
58
59LocalSCVector::~LocalSCVector()
60{
61}
62
63double *
64LocalSCVector::get_data()
65{
66 return block->data;
67}
68
69double
70LocalSCVector::get_element(int i) const
71{
72 int size = block->iend - block->istart;
73 if (i < 0 || i >= size) {
74 ExEnv::errn() << indent << "LocalSCVector::get_element: bad index\n";
75 abort();
76 }
77 return block->data[i];
78}
79
80void
81LocalSCVector::set_element(int i,double a)
82{
83 int size = block->iend - block->istart;
84 if (i < 0 || i >= size) {
85 ExEnv::errn() << indent << "LocalSCVector::set_element: bad index\n";
86 abort();
87 }
88 block->data[i] = a;
89}
90
91void
92LocalSCVector::accumulate_element(int i,double a)
93{
94 int size = block->iend - block->istart;
95 if (i < 0 || i >= size) {
96 ExEnv::errn() << indent << "LocalSCVector::accumulate_element: bad index\n";
97 abort();
98 }
99 block->data[i] += a;
100}
101
102void
103LocalSCVector::accumulate_product_rv(SCMatrix*a,SCVector*b)
104{
105 const char* name = "LocalSCVector::accumulate_product";
106 // make sure that the arguments are of the correct type
107 LocalSCMatrix* la = require_dynamic_cast<LocalSCMatrix*>(a,name);
108 LocalSCVector* lb = require_dynamic_cast<LocalSCVector*>(b,name);
109
110 // make sure that the dimensions match
111 if (!dim()->equiv(la->rowdim()) || !la->coldim()->equiv(lb->dim())) {
112 ExEnv::errn() << indent
113 << "LocalSCVector:: accumulate_product(SCMatrix*a,SCVector*b): "
114 << "dimensions don't match\n";
115 abort();
116 }
117
118 cmat_mxm(la->rows, 0,
119 &(lb->block->data), 1,
120 &(block->data), 1,
121 n(), la->ncol(), 1,
122 1);
123}
124
125void
126LocalSCVector::accumulate_product_sv(SymmSCMatrix*a,SCVector*b)
127{
128 const char* name = "LocalSCVector::accumulate_product";
129 // make sure that the arguments are of the correct type
130 LocalSymmSCMatrix* la = require_dynamic_cast<LocalSymmSCMatrix*>(a,name);
131 LocalSCVector* lb = require_dynamic_cast<LocalSCVector*>(b,name);
132
133 // make sure that the dimensions match
134 if (!dim()->equiv(la->dim()) || !la->dim()->equiv(lb->dim())) {
135 ExEnv::errn() << indent
136 << "LocalSCVector:: accumulate_product(SymmSCMatrix*a,SCVector*b): "
137 << "dimensions don't match\n";
138 abort();
139 }
140
141 double* thisdat = block->data;
142 double** adat = la->rows;
143 double* bdat = lb->block->data;
144 double tmp;
145 int n = dim()->n();
146 int i, j;
147 for (i=0; i<n; i++) {
148 tmp = 0.0;
149 for (j=0; j<=i; j++) {
150 tmp += adat[i][j] * bdat[j];
151 }
152 for (; j<n; j++) {
153 tmp += adat[j][i] * bdat[j];
154 }
155 thisdat[i] += tmp;
156 }
157}
158
159void
160LocalSCVector::accumulate(const SCVector*a)
161{
162 // make sure that the argument is of the correct type
163 const LocalSCVector* la
164 = require_dynamic_cast<const LocalSCVector*>(a,"LocalSCVector::accumulate");
165
166 // make sure that the dimensions match
167 if (!dim()->equiv(la->dim())) {
168 ExEnv::errn() << indent << "LocalSCVector::accumulate(SCVector*a): "
169 << "dimensions don't match\n";
170 abort();
171 }
172
173 int nelem = d->n();
174 int i;
175 for (i=0; i<nelem; i++) block->data[i] += la->block->data[i];
176}
177
178void
179LocalSCVector::accumulate(const SCMatrix*a)
180{
181 // make sure that the argument is of the correct type
182 const LocalSCMatrix* la
183 = require_dynamic_cast<const LocalSCMatrix*>(a,"LocalSCVector::accumulate");
184
185 // make sure that the dimensions match
186 if (!((la->rowdim()->equiv(dim()) && la->coldim()->n() == 1)
187 || (la->coldim()->equiv(dim()) && la->rowdim()->n() == 1))) {
188 ExEnv::errn() << indent << "LocalSCVector::accumulate(SCMatrix*a): "
189 << "dimensions don't match\n";
190 abort();
191 }
192
193 int nelem = d->n();
194 int i;
195 for (i=0; i<nelem; i++) block->data[i] += la->block->data[i];
196}
197
198void
199LocalSCVector::assign_val(double a)
200{
201 int nelem = d->n();
202 int i;
203 for (i=0; i<nelem; i++) block->data[i] = a;
204}
205
206void
207LocalSCVector::assign_v(SCVector*a)
208{
209 // make sure that the argument is of the correct type
210 LocalSCVector* la
211 = require_dynamic_cast<LocalSCVector*>(a,"LocalSCVector::assign_v");
212
213 // make sure that the dimensions match
214 if (!dim()->equiv(la->dim())) {
215 ExEnv::errn() << indent << "LocalSCVector::assign_v(SCVector*a): "
216 << "dimensions don't match\n";
217 abort();
218 }
219
220 int nelem = d->n();
221 int i;
222 for (i=0; i<nelem; i++) block->data[i] = la->block->data[i];
223}
224
225void
226LocalSCVector::assign_p(const double*a)
227{
228 int nelem = d->n();
229 int i;
230 for (i=0; i<nelem; i++) block->data[i] = a[i];
231}
232
233double
234LocalSCVector::scalar_product(SCVector*a)
235{
236 // make sure that the argument is of the correct type
237 LocalSCVector* la
238 = require_dynamic_cast<LocalSCVector*>(a,"LocalSCVector::scalar_product");
239
240 // make sure that the dimensions match
241 if (!dim()->equiv(la->dim())) {
242 ExEnv::errn() << indent << "LocalSCVector::scalar_product(SCVector*a): "
243 << "dimensions don't match\n";
244 abort();
245 }
246
247 int nelem = d->n();
248 int i;
249 double result = 0.0;
250 for (i=0; i<nelem; i++) result += block->data[i] * la->block->data[i];
251 return result;
252}
253
254void
255LocalSCVector::element_op(const Ref<SCElementOp>& op)
256{
257 op->process_spec_vsimp(block.pointer());
258}
259
260void
261LocalSCVector::element_op(const Ref<SCElementOp2>& op,
262 SCVector* m)
263{
264 LocalSCVector *lm
265 = require_dynamic_cast<LocalSCVector*>(m, "LocalSCVector::element_op");
266
267 if (!dim()->equiv(lm->dim())) {
268 ExEnv::errn() << indent << "LocalSCVector: bad element_op\n";
269 abort();
270 }
271 op->process_spec_vsimp(block.pointer(), lm->block.pointer());
272}
273
274void
275LocalSCVector::element_op(const Ref<SCElementOp3>& op,
276 SCVector* m,SCVector* n)
277{
278 LocalSCVector *lm
279 = require_dynamic_cast<LocalSCVector*>(m, "LocalSCVector::element_op");
280 LocalSCVector *ln
281 = require_dynamic_cast<LocalSCVector*>(n, "LocalSCVector::element_op");
282
283 if (!dim()->equiv(lm->dim()) || !dim()->equiv(ln->dim())) {
284 ExEnv::errn() << indent << "LocalSCVector: bad element_op\n";
285 abort();
286 }
287 op->process_spec_vsimp(block.pointer(),
288 lm->block.pointer(), ln->block.pointer());
289}
290
291// from Ed Seidl at the NIH (with a bit of hacking)
292void
293LocalSCVector::vprint(const char *title, ostream& os, int prec) const
294{
295 int i;
296 int lwidth;
297 double max=this->maxabs();
298
299 max = (max==0.0) ? 1.0 : log10(max);
300 if (max < 0.0) max=1.0;
301
302 lwidth = prec + 5 + (int) max;
303
304 if (title)
305 os << endl << indent << title << endl;
306 else
307 os << endl;
308
309 if (n()==0) {
310 os << indent << "empty vector\n";
311 return;
312 }
313
314 for (i=0; i<n(); i++)
315 os << indent
316 << scprintf("%5d %*.*f\n",i+1,lwidth,prec,block->data[i]);
317 os << endl;
318
319 os.flush();
320}
321
322Ref<SCMatrixSubblockIter>
323LocalSCVector::local_blocks(SCMatrixSubblockIter::Access access)
324{
325 if (messagegrp()->n() > 1) {
326 ExEnv::errn() << indent
327 << "LocalSCVector::local_blocks: not valid for local matrices"
328 << endl;
329 abort();
330 }
331 Ref<SCMatrixSubblockIter> iter
332 = new SCMatrixSimpleSubblockIter(access, block.pointer());
333 return iter;
334}
335
336Ref<SCMatrixSubblockIter>
337LocalSCVector::all_blocks(SCMatrixSubblockIter::Access access)
338{
339 if (access == SCMatrixSubblockIter::Write) {
340 ExEnv::errn() << indent << "LocalVectorSCMatrix::all_blocks: "
341 << "Write access permitted for local blocks only"
342 << endl;
343 abort();
344 }
345 return local_blocks(access);
346}
347
348/////////////////////////////////////////////////////////////////////////////
349
350// Local Variables:
351// mode: c++
352// c-file-style: "CLJ"
353// End:
Note: See TracBrowser for help on using the repository browser.