We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7888c42 commit faeca56Copy full SHA for faeca56
build/pkgs/gfan/patches/gfanlib_matrix.patch
@@ -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