| 2396 | } |
| 2397 | |
| 2398 | const Integrators::IntegratorInfo<LinearFormIntegrator> * |
| 2399 | Integrators::GetLFI(const string & name, int spacedim) const |
| 2400 | { |
| 2401 | for (int i = 0; i < lfis.Size(); i++) |
| 2402 | if (name == lfis[i]->name && spacedim == lfis[i]->spacedim) |
| 2403 | return lfis[i]; |
| 2404 | |
| 2405 | throw Exception (string ("GetLFI: Unknown integrator ") + name + "\n"); |
| 2406 | } |
| 2407 | |
| 2408 | |
| 2409 | shared_ptr<LinearFormIntegrator> |