*** empty log message ***

This commit is contained in:
jiri
2005-09-06 15:55:07 +00:00
parent 4e5311fece
commit abe1725466
14 changed files with 261 additions and 21 deletions

2
mat.cc
View File

@@ -15,6 +15,7 @@ extern ssize_t write(int, const void *, size_t);
template NRMat<double>;
template NRMat< complex<double> >;
template NRMat<int>;
template NRMat<short>;
template NRMat<char>;
@@ -798,6 +799,7 @@ template istream & operator>>(istream &s, NRMat< T > &x); \
INSTANTIZE(double)
INSTANTIZE(complex<double>)
INSTANTIZE(int)
INSTANTIZE(short)
INSTANTIZE(char)