blob: 57f331fd9a6135771e8a72663120c2d046312783 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- library/src/matrix.cc.orig 2018-12-01 16:51:25 UTC
+++ library/src/matrix.cc
@@ -25,11 +25,15 @@
using namespace Gambit;
+namespace Gambit {
+
template class Matrix<double>;
template class Matrix<Rational>;
template class Matrix<Integer>;
template class Matrix<int>;
+}
+
template Vector<double> Gambit::operator*(const Vector<double> &,
const Matrix<double> &);
template Vector<Rational> Gambit::operator*(const Vector<Rational> &,
|