ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/Utility.cpp
(Generate patch)

Comparing trunk/OOPSE/libmdtools/Utility.cpp (file contents):
Revision 1174 by tim, Tue Feb 24 15:44:45 2004 UTC vs.
Revision 1175 by gezelter, Wed May 12 21:54:14 2004 UTC

# Line 1 | Line 1
1 < #include "Utility.hpp"
2 < #include <vector>
3 < #include <iostream>
4 < #include <math.h>
5 < using namespace std;
6 <
7 < double dotProduct(vector<double>& v1, vector<double>& v2){
8 <  double sum;
9 <
10 <  sum = 0;
11 <
12 <  if(v1.size() != v2.size()){
13 <    cerr << "Utility Error: dimension of two vectors are not matched" << endl;
14 <    exit(-1);
15 <  }
16 <  
17 <   for(int  i = 0; i < v1.size(); i++)
18 <     sum += v1[i]*v2[i];
19 <   return sum;
20 < }
21 <
22 < double copysign(double sign, double value){
23 <  double result = fabs(value);
24 <
25 <  return sign >= 0 ? result : -result;
26 < }
27 <
28 < double norm2(vector<double>& x){
29 <  return sqrt(dotProduct(x, x));
30 < }      
1 > #include "Utility.hpp"
2 > #include <vector>
3 > #include <iostream>
4 > #include <math.h>
5 > using namespace std;
6 >
7 > double dotProduct(vector<double>& v1, vector<double>& v2){
8 >  double sum;
9 >
10 >  sum = 0;
11 >
12 >  if(v1.size() != v2.size()){
13 >    cerr << "Utility Error: dimension of two vectors are not matched" << endl;
14 >    exit(-1);
15 >  }
16 >  
17 >   for(int  i = 0; i < v1.size(); i++)
18 >     sum += v1[i]*v2[i];
19 >   return sum;
20 > }
21 >
22 > double norm2(vector<double>& x){
23 >  return sqrt(dotProduct(x, x));
24 > }      

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines