Skip to content
Snippets Groups Projects
Commit 6824f1e8 authored by Adrian Burri's avatar Adrian Burri
Browse files

Adapted to new interface

[[Imported from SVN: r2681]]
parent 8bfe3fc3
No related branches found
No related tags found
No related merge requests found
......@@ -35,8 +35,8 @@ namespace Dune {
virtual void operator()(const DiscreteFunctionType& arg,
DiscreteFunctionType& dest ) const
{
typedef typename DiscreteFunctionType::FunctionSpace FunctionSpaceType;
typedef typename FunctionSpaceType::RangeField Field;
typedef typename DiscreteFunctionType::DiscreteFunctionSpaceType FunctionSpaceType;
typedef typename FunctionSpaceType::RangeFieldType Field;
int count = 0;
Field spa=0, spn, q, quad;
......@@ -47,10 +47,10 @@ namespace Dune {
op_( dest, h );
r.assign( h );
r.assign(h);
r -= arg;
p.assign( arg );
p.assign(arg);
p -= h;
spn = r.scalarProductDofs( r );
......@@ -136,8 +136,8 @@ namespace Dune {
virtual void operator() (const DiscreteFunctionType& arg,
DiscreteFunctionType& dest ) const
{
typedef typename DiscreteFunctionType::FunctionSpace FunctionSpaceType;
typedef typename FunctionSpaceType::RangeField Field;
typedef typename DiscreteFunctionType::DiscreteFunctionSpaceType FunctionSpaceType;
typedef typename FunctionSpaceType::RangeFieldType Field;
int count = 0;
Field spa=0, spn, q, quad;
......@@ -154,10 +154,10 @@ namespace Dune {
op_( dest, h );
r.assign( h );
r.assign(h) ;
r -= arg;
p.assign( arg );
p.assign(arg);
p -= h;
spn = r.scalarProductDofs( r );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment