#include <vector>
-void test (Vector<number> &v,
- Vector<number> &w)
+void test (Vector<double> &v,
+ Vector<double> &w)
{
FullMatrix<double> m(v.size(), v.size());
for (unsigned int i=0; i<m.m(); ++i)
try
{
- Vector<number> v (100);
- Vector<number> w (100);
+ Vector<double> v (100);
+ Vector<double> w (100);
test (v,w);
}
catch (std::exception &exc)
#include <vector>
-void test (Vector<number> &v,
- Vector<number> &w)
+void test (Vector<double> &v,
+ Vector<double> &w)
{
FullMatrix<double> m(v.size(), v.size());
for (unsigned int i=0; i<m.m(); ++i)
try
{
- Vector<number> v (100);
- Vector<number> w (100);
+ Vector<double> v (100);
+ Vector<double> w (100);
test (v,w);
}
catch (std::exception &exc)
#include <vector>
-void test (Vector<number> &v,
- Vector<number> &w)
+void test (Vector<double> &v,
+ Vector<double> &w)
{
FullMatrix<double> m(v.size(), v.size());
for (unsigned int i=0; i<m.m(); ++i)
try
{
- Vector<number> v (100);
- Vector<number> w (100);
+ Vector<double> v (100);
+ Vector<double> w (100);
test (v,w);
}
catch (std::exception &exc)
#include <vector>
-void test (Vector<number> &v)
+void test (Vector<double> &v)
{
FullMatrix<double> m(v.size(), v.size());
for (unsigned int i=0; i<m.m(); ++i)
try
{
- Vector<number> v (100);
+ Vector<double> v (100);
test (v);
}
catch (std::exception &exc)
#include <vector>
-void test (Vector<number> &v,
- Vector<number> &w,
- Vector<number> &x)
+void test (Vector<double> &v,
+ Vector<double> &w,
+ Vector<double> &x)
{
FullMatrix<double> m(v.size(), v.size());
for (unsigned int i=0; i<m.m(); ++i)
try
{
- Vector<number> v (100);
- Vector<number> w (100);
- Vector<number> x (100);
+ Vector<double> v (100);
+ Vector<double> w (100);
+ Vector<double> x (100);
test (v,w,x);
}
catch (std::exception &exc)