source: ThirdParty/mpqc_open/src/lib/chemistry/qc/basis/cartiter.cc@ 860145

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open 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_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 860145 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: 4.3 KB
Line 
1//
2// cartiter.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#ifdef __GNUC__
29#pragma implementation
30#endif
31
32#include <stdlib.h>
33#include <math.h>
34
35#include <util/misc/formio.h>
36#include <util/misc/exenv.h>
37#include <chemistry/qc/basis/cartiter.h>
38
39using namespace sc;
40
41////////////////////////////////////////////////////////////////////////
42// CartianIter
43
44CartesianIter::CartesianIter(int l) :
45 l_(l)
46{
47}
48
49CartesianIter::~CartesianIter()
50{
51}
52
53////////////////////////////////////////////////////////////////////////
54// RedundantCartianIter
55
56RedundantCartesianIter::RedundantCartesianIter(int l)
57{
58 l_ = l;
59 axis_ = new int[l_];
60}
61
62RedundantCartesianIter::~RedundantCartesianIter()
63{
64 delete[] axis_;
65}
66
67////////////////////////////////////////////////////////////////////////
68// RedundantCartianIter
69
70RedundantCartesianSubIter::RedundantCartesianSubIter(int l)
71{
72 l_ = l;
73 axis_ = new int[l_];
74 zloc_ = new int[l_];
75 yloc_ = new int[l_];
76}
77
78RedundantCartesianSubIter::~RedundantCartesianSubIter()
79{
80 delete[] axis_;
81 delete[] zloc_;
82 delete[] yloc_;
83}
84
85void
86RedundantCartesianSubIter::start(int a, int b, int c)
87{
88 if (l_ != a + b + c) {
89 ExEnv::err0() << indent
90 << "RedundantCartesianSubIter::start: bad args\n";
91 abort();
92 }
93
94 if (l_==0) {
95 done_ = 1;
96 return;
97 } else {
98 done_ = 0;
99 }
100
101 e_[0] = a;
102 e_[1] = b;
103 e_[2] = c;
104
105 int ii=0;
106 for (int i=0; i<c; i++,ii++) { axis_[ii] = 2; zloc_[i] = c-i-1; }
107 for (int i=0; i<b; i++,ii++) { axis_[ii] = 1; yloc_[i] = b-i-1; }
108 for (int i=0; i<a; i++,ii++) axis_[ii] = 0;
109}
110
111static bool
112advance(int l, int *loc, int n)
113{
114 int maxloc = l-1;
115 for (int i=0; i<n; i++) {
116 if (loc[i] < maxloc) {
117 loc[i]++;
118 for (int j=i-1; j>=0; j--) loc[j] = loc[j+1] + 1;
119 return true;
120 }
121 else {
122 maxloc = loc[i]-1;
123 }
124 }
125 return false;
126}
127
128// This loops through all unique axis vectors that have a
129// given total a, b, and c. It is done by looping through
130// all possible positions for z, then y, leaving x to be
131// filled in.
132void
133RedundantCartesianSubIter::next()
134{
135 int currentz = 0;
136 int currenty = 0;
137 int nz = c();
138 int ny = b();
139
140 if (!::advance(l(),zloc_,nz)) {
141 if (!::advance(l()-nz,yloc_,ny)) {
142 done_ = 1;
143 return;
144 }
145 else {
146 for (int i=0; i<nz; i++) { zloc_[i] = nz-i-1; }
147 }
148 }
149
150 int nonz = l()-nz-1;
151 for (int i = l()-1; i>=0; i--) {
152 if (currentz<nz && zloc_[currentz]==i) {
153 axis_[i] = 2;
154 currentz++;
155 }
156 else if (currenty<ny && yloc_[currenty]==nonz) {
157 axis_[i] = 1;
158 currenty++;
159 nonz--;
160 }
161 else {
162 axis_[i] = 0;
163 nonz--;
164 }
165 }
166// for (int i=0; i<3; i++) cout << " " << e_[i];
167// cout << ": ";
168// for (int i=0; i<l(); i++) cout << " " << axis_[i];
169// cout << endl;
170// if (!valid()) {
171// cout << "ERROR: invalid" << endl;
172// cout << "z: ";
173// for (int i=0; i<c(); i++) cout << " " << zloc_[i];
174// cout << endl;
175// cout << "y: ";
176// for (int i=0; i<b(); i++) cout << " " << yloc_[i];
177// cout << endl;
178// }
179}
180
181int
182RedundantCartesianSubIter::valid()
183{
184 int t[3];
185 int i;
186
187 for (i=0; i<3; i++)
188 t[i] = 0;
189
190 for (i=0; i<l_; i++)
191 t[axis_[i]]++;
192
193 return t[0] == e_[0] && t[1] == e_[1] && t[2] == e_[2];
194}
195
196/////////////////////////////////////////////////////////////////////////////
197
198// Local Variables:
199// mode: c++
200// c-file-style: "ETS"
201// End:
Note: See TracBrowser for help on using the repository browser.