deallog << f + d << std::endl;
deallog << f - d << std::endl;
- deallog << f * d << std::endl;
+ deallog << f *d << std::endl;
deallog << d + c << std::endl;
deallog << d - c << std::endl;
- deallog << d * c << std::endl;
+ deallog << d *c << std::endl;
float f_scalar = 10.;
deallog << (d * f_scalar) << std::endl;
deallog << f + d << std::endl;
deallog << f - d << std::endl;
- deallog << f * d << std::endl;
+ deallog << f *d << std::endl;
deallog << d + c << std::endl;
deallog << d - c << std::endl;
- deallog << d * c << std::endl;
+ deallog << d *c << std::endl;
float f_scalar = 10.;
deallog << (d * f_scalar) << std::endl;
deallog << f1 + d1 << std::endl;
deallog << f1 - d1 << std::endl;
- deallog << f1 * d1 << std::endl;
+ deallog << f1 *d1 << std::endl;
deallog << d1 + c1 << std::endl;
deallog << d1 - c1 << std::endl;
- deallog << d1 * c1 << std::endl;
+ deallog << d1 *c1 << std::endl;
deallog << (d1 * f_scalar) << std::endl;
deallog << (d1 / f_scalar) << std::endl;
deallog << f2 + d2 << std::endl;
deallog << f2 - d2 << std::endl;
- deallog << f2 * d2 << std::endl;
+ deallog << f2 *d2 << std::endl;
deallog << d2 + c2 << std::endl;
deallog << d2 - c2 << std::endl;
- deallog << d2 * c2 << std::endl;
+ deallog << d2 *c2 << std::endl;
deallog << (d2 * f_scalar) << std::endl;
deallog << (d2 / f_scalar) << std::endl;
deallog << f3 + d3 << std::endl;
deallog << f3 - d3 << std::endl;
- deallog << f3 * d3 << std::endl;
+ deallog << f3 *d3 << std::endl;
deallog << d3 + c3 << std::endl;
deallog << d3 - c3 << std::endl;
- deallog << d3 * c3 << std::endl;
+ deallog << d3 *c3 << std::endl;
deallog << (d3 * f_scalar) << std::endl;
deallog << (d3 / f_scalar) << std::endl;