| 1083 | void SetDefinedOn (VorB vb, const BitArray& defon) override; |
| 1084 | |
| 1085 | DofRange GetRange (int spacenr) const |
| 1086 | { |
| 1087 | if (spacenr+1 >= cummulative_nd.Size()) |
| 1088 | throw Exception("spacenr >= cummulative_nd.Size() in CompoundFESpace!"); |
| 1089 | |
| 1090 | return DofRange(IntRange(cummulative_nd[spacenr], cummulative_nd[spacenr+1]), |
| 1091 | spaces[spacenr]->GetParallelDofs()); |
| 1092 | } |
| 1093 | |
| 1094 | shared_ptr<BaseMatrix> EmbeddingOperator (int spacenr) const; |
| 1095 | shared_ptr<BaseMatrix> RestrictionOperator (int spacenr) const; |
no test coverage detected