File: colmatmap.cpp

package info (click to toggle)
lammps 20220106.git7586adbb6a%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 348,064 kB
  • sloc: cpp: 831,421; python: 24,896; xml: 14,949; f90: 10,845; ansic: 7,967; sh: 4,226; perl: 4,064; fortran: 2,424; makefile: 1,501; objc: 238; lisp: 163; csh: 16; awk: 14; tcl: 6
file content (198 lines) | stat: -rw-r--r-- 5,166 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
 *_________________________________________________________________________*
 *      POEMS: PARALLELIZABLE OPEN SOURCE EFFICIENT MULTIBODY SOFTWARE     *
 *      DESCRIPTION: SEE READ-ME                                           *
 *      FILE NAME: colmatmap.cpp                                           *
 *      AUTHORS: See Author List                                           *
 *      GRANTS: See Grants List                                            *
 *      COPYRIGHT: (C) 2005 by Authors as listed in Author's List          *
 *      LICENSE: Please see License Agreement                              *
 *      DOWNLOAD: Free at www.rpi.edu/~anderk5                             *
 *      ADMINISTRATOR: Prof. Kurt Anderson                                 *
 *                     Computational Dynamics Lab                          *
 *                     Rensselaer Polytechnic Institute                    *
 *                     110 8th St. Troy NY 12180                           *
 *      CONTACT:        anderk5@rpi.edu                                    *
 *_________________________________________________________________________*/

#include "colmatmap.h"
#include "colmatrix.h"
#include <iostream>
#include <cstdlib>

using namespace std;

ColMatMap::ColMatMap(){
  numrows = 0;
  elements = 0;
}

ColMatMap::~ColMatMap(){
  delete [] elements;
}

ColMatMap::ColMatMap(const ColMatMap& A){  // copy constructor
  numrows = 0;
  elements = 0;
  Dim(A.numrows);
  for(int i=0;i<numrows;i++)
    elements[i] = A.elements[i];
}

ColMatMap::ColMatMap(ColMatrix& A){  // copy constructor
  numrows = 0;
  elements = 0;
  Dim(A.GetNumRows());
  for(int i=0;i<numrows;i++)
    elements[i] = A.GetElementPointer(i);
}

/*
ColMatrix::ColMatrix(const VirtualMatrix& A){  // copy constructor
  if( A.GetNumCols() != 1 ){
    cerr << "error trying to write a 2D matrix to a collumn" << endl;
    exit(1);
  }
  numrows = 0;
  elements = 0;
  Dim(A.GetNumRows());
  for(int i=0;i<numrows;i++)
    elements[i] = A.BasicGet(i,0);
}
*/

ColMatMap::ColMatMap(int m){  // size constructor
  numrows = 0;
  elements = 0;
  Dim(m);
}

void ColMatMap::Dim(int m){
  delete [] elements;
  numrows = m;
  elements = new double* [m];
}

void ColMatMap::Const(double value){
  for(int i=0;i<numrows;i++)
    *(elements[i]) = value;
}

MatrixType ColMatMap::GetType() const{
  return COLMATMAP;
}

ostream& ColMatMap::WriteData(ostream& c) const{  //output
  c << numrows << ' ';
  for(int i=0;i<numrows;i++)
    c << *(elements[i]) << ' ';
  return c;
}

double& ColMatMap::operator_1int (int i){ // array access
  if((i>numrows) || (i<1)){
    cerr << "matrix index invalid in operator ()" << endl;
    exit(1);
  }
  return *(elements[i-1]);
}

double ColMatMap::Get_1int(int i) const{
  if((i>numrows) || (i<1)){
    cerr << "matrix index exceeded in Get" << endl;
    exit(1);
  }
  return *(elements[i-1]);
}

void ColMatMap::Set_1int(int i, double value){
  if((i>numrows) || (i<1)){
    cerr << "matrix index exceeded in Set" << endl;
    exit(1);
  }
  *(elements[i-1]) = value;
}

double ColMatMap::BasicGet_1int(int i) const{
  return *(elements[i]);
}

void ColMatMap::SetElementPointer(int i, double* p){
  elements[i] = p;
}

double* ColMatMap::GetElementPointer(int i){
  return elements[i];
}

void ColMatMap::BasicSet_1int(int i, double value){
  *(elements[i]) = value;
}

void ColMatMap::BasicIncrement_1int(int i, double value){
  *(elements[i]) += value;
}

void ColMatMap::AssignVM(const VirtualMatrix& A){
  if(A.GetNumRows() != numrows){
    cerr << "dimension mismatch in ColMatMap assignment" << endl;
    exit(0);
  }
  if( A.GetNumCols() != 1 ){
    cerr << "error trying to write a 2D matrix to a collumn" << endl;
    exit(1);
  }
  for(int i=0;i<numrows;i++)
    *(elements[i]) = A.BasicGet(i,0);
}

ColMatMap& ColMatMap::operator=(const ColMatMap& A){ // assignment operator
  if(A.numrows != numrows){
    cerr << "dimension mismatch in ColMatMap assignment" << endl;
    exit(0);
  }
  for(int i=0;i<numrows;i++)
    *(elements[i]) = *(A.elements[i]);
  return *this;
}

ColMatMap& ColMatMap::operator=(const ColMatrix& A){ // assignment operator
  if(A.GetNumRows() != numrows){
    cerr << "dimension mismatch in ColMatMap assignment" << endl;
    exit(0);
  }
  for(int i=0;i<numrows;i++)
    *(elements[i]) = A.BasicGet(i);
  return *this;
}

ColMatMap& ColMatMap::operator=(const VirtualColMatrix& A){ // overloaded =
  if(A.GetNumRows() != numrows){
    cerr << "dimension mismatch in ColMatMap assignment" << endl;
    exit(0);
  }
  for(int i=0;i<numrows;i++)
    *(elements[i]) = A.BasicGet(i);
  return *this;
}

ColMatMap& ColMatMap::operator=(const VirtualMatrix& A){ // overloaded =
  if(A.GetNumRows() != numrows){
    cerr << "dimension mismatch in ColMatMap assignment" << endl;
    exit(0);
  }
  if( A.GetNumCols() != 1 ){
    cerr << "error trying to write a 2D matrix to a collumn" << endl;
    exit(1);
  }
  for(int i=0;i<numrows;i++)
    *(elements[i]) = A.BasicGet(i,0);
  return *this;
}

ColMatMap& ColMatMap::operator*=(double b){
  for(int i=0;i<numrows;i++)
    *(elements[i]) *= b;
  return *this;
}