Skip to content

Commit faeca56

Browse files
committed
patching gfan
1 parent 7888c42 commit faeca56

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
diff --git a/gfanlib/gfanlib_matrix.h b/gfanlib/gfanlib_matrix.h
2+
index cb5c35de8..fa5b82092 100644
3+
--- a/src/gfanlib_matrix.h
4+
+++ b/src/gfanlib_matrix.h
5+
@@ -115,6 +115,7 @@ public:
6+
p[i][j]=s*(q[i][j]);
7+
return p;
8+
}
9+
+ /*
10+
friend Matrix operator*(const Matrix& a, const Matrix& b)
11+
{
12+
assert(a.width==b.height);
13+
@@ -123,6 +124,7 @@ public:
14+
ret[i]=a.vectormultiply(b.column(i));
15+
return ret.transposed();
16+
}
17+
+ */
18+
/* template<class T>
19+
Matrix<T>(const Matrix<T>& c):v(c.size()){
20+
for(int i=0;i<size();i++)v[i]=typ(c[i]);}

0 commit comments

Comments
 (0)