deallog.attach(logfile);
deallog.depth_console(0);
- vector<Polynomial<double> > p (15);
+ std::vector<Polynomial<double> > p (15);
for (unsigned int i=0;i<p.size();++i)
p[i] = Legendre<double>(i);
for (unsigned int i=0;i<p.size();++i)
for (unsigned int j=0;j<=i;++j)
deallog << 'P' << i << " * P" << j
- << " =" << scalar_product(p[i], p[j]) << endl;
+ << " =" << scalar_product(p[i], p[j]) << std::endl;
}
for (unsigned int n=0; n<quadratures.size(); ++n)
{
QProjector<dim> quadrature(*quadratures[n], sub);
- const vector<Point<dim> > &points=quadrature.get_points();
- const vector<double> &weights=quadrature.get_weights();
+ const std::vector<Point<dim> > &points=quadrature.get_points();
+ const std::vector<double> &weights=quadrature.get_weights();
deallog << "Quadrature no." << n
<< " (" << typeid(*quadratures[n]).name() << ")";
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams