| 67 | } |
| 68 | |
| 69 | ProxyNode CompressedFESpace::MakeProxyFunction (bool testfunction, |
| 70 | const function<shared_ptr<ProxyFunction>(shared_ptr<ProxyFunction>)> & addblock) const |
| 71 | { |
| 72 | return GetBaseSpace()->MakeProxyFunction |
| 73 | (testfunction, |
| 74 | [&] (shared_ptr<ProxyFunction> proxy) |
| 75 | { |
| 76 | shared_ptr<FESpace> fes = dynamic_pointer_cast<FESpace> (const_cast<CompressedFESpace*>(this)->shared_from_this()); |
| 77 | proxy->SetFESpace(fes); |
| 78 | return addblock (proxy); |
| 79 | }); |
| 80 | } |
| 81 | |
| 82 | |
| 83 | FiniteElement & CompressedFESpace::GetFE (ElementId ei, Allocator & lh) const |
no test coverage detected