| 2339 | } |
| 2340 | |
| 2341 | const Integrators::IntegratorInfo<BilinearFormIntegrator> * |
| 2342 | Integrators::GetBFI(const string & name, int spacedim) const |
| 2343 | { |
| 2344 | for (int i = 0; i < bfis.Size(); i++) |
| 2345 | if (name == bfis[i]->name && spacedim == bfis[i]->spacedim) |
| 2346 | return bfis[i]; |
| 2347 | |
| 2348 | throw Exception (string ("GetBFI: Unknown integrator ") + name + "\n"); |
| 2349 | } |
| 2350 | |
| 2351 | shared_ptr<BilinearFormIntegrator> |
| 2352 | Integrators::CreateBFI(const string & name, int dim, |