[0b990d] | 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 |
|
---|
| 39 | using namespace sc;
|
---|
| 40 |
|
---|
| 41 | ////////////////////////////////////////////////////////////////////////
|
---|
| 42 | // CartianIter
|
---|
| 43 |
|
---|
| 44 | CartesianIter::CartesianIter(int l) :
|
---|
| 45 | l_(l)
|
---|
| 46 | {
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | CartesianIter::~CartesianIter()
|
---|
| 50 | {
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | ////////////////////////////////////////////////////////////////////////
|
---|
| 54 | // RedundantCartianIter
|
---|
| 55 |
|
---|
| 56 | RedundantCartesianIter::RedundantCartesianIter(int l)
|
---|
| 57 | {
|
---|
| 58 | l_ = l;
|
---|
| 59 | axis_ = new int[l_];
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | RedundantCartesianIter::~RedundantCartesianIter()
|
---|
| 63 | {
|
---|
| 64 | delete[] axis_;
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | ////////////////////////////////////////////////////////////////////////
|
---|
| 68 | // RedundantCartianIter
|
---|
| 69 |
|
---|
| 70 | RedundantCartesianSubIter::RedundantCartesianSubIter(int l)
|
---|
| 71 | {
|
---|
| 72 | l_ = l;
|
---|
| 73 | axis_ = new int[l_];
|
---|
| 74 | zloc_ = new int[l_];
|
---|
| 75 | yloc_ = new int[l_];
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | RedundantCartesianSubIter::~RedundantCartesianSubIter()
|
---|
| 79 | {
|
---|
| 80 | delete[] axis_;
|
---|
| 81 | delete[] zloc_;
|
---|
| 82 | delete[] yloc_;
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 | void
|
---|
| 86 | RedundantCartesianSubIter::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 |
|
---|
| 111 | static bool
|
---|
| 112 | advance(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.
|
---|
| 132 | void
|
---|
| 133 | RedundantCartesianSubIter::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 |
|
---|
| 181 | int
|
---|
| 182 | RedundantCartesianSubIter::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:
|
---|