| 3699 | |
| 3700 | |
| 3701 | shared_ptr<BaseMatrix> CompoundFESpace :: RestrictionOperator (int spacenr) const |
| 3702 | { |
| 3703 | shared_ptr<BaseMatrix> emb = make_shared<EmbeddingTranspose> (GetNDof(), GetRange(spacenr), IsComplex()); |
| 3704 | if (IsParallel()) |
| 3705 | emb = make_shared<ParallelMatrix> (emb, |
| 3706 | GetParallelDofs(), |
| 3707 | spaces[spacenr] -> GetParallelDofs(), |
| 3708 | C2C); |
| 3709 | return emb; |
| 3710 | } |
| 3711 | |
| 3712 | |
| 3713 |
nothing calls this directly
no test coverage detected