Skip to content

#49 P1Function doesn't compile with Expression Templates

Metadata

Property Value
Reported by Oliver Sander (oliver.sander@tu-dresden.de)
Reported at Nov 16, 2005 08:43
Type Bug Report
Version Git (pre2.4) [autotools]
Operating System Unspecified / All
Closed by Oliver Sander (oliver.sander@tu-dresden.de)
Closed at Dec 30, 2005 15:05
Closed in version Unknown
Resolution Fixed
Comment

Description

The following code doesn't compile when DUNE_EXPRESSIONTEMPLATES is set:

int n[2] = {10,10}; double h[2] = {1,1}; SGrid<2,2> grid(n,h);

LevelP1FEFunction<SGrid<2,2>,double> foo(grid,0); FieldVector<double,2> pos;

foo.evallocal(0, *grid.lbegin<0>(0), pos);