Added
Link Here
|
1 |
--- src/gfanlib_matrix.h.orig 2017-06-20 14:47:37 UTC |
2 |
+++ src/gfanlib_matrix.h |
3 |
@@ -115,6 +115,7 @@ template <class typ> class Matrix{ (public) |
4 |
p[i][j]=s*(q[i][j]); |
5 |
return p; |
6 |
} |
7 |
+#if 0 |
8 |
friend Matrix operator*(const Matrix& a, const Matrix& b) |
9 |
{ |
10 |
assert(a.width==b.height); |
11 |
@@ -123,6 +124,7 @@ template <class typ> class Matrix{ (public) |
12 |
ret[i]=a.vectormultiply(b.column(i)); |
13 |
return ret.transposed(); |
14 |
} |
15 |
+#endif |
16 |
/* template<class T> |
17 |
Matrix<T>(const Matrix<T>& c):v(c.size()){ |
18 |
for(int i=0;i<size();i++)v[i]=typ(c[i]);} |