MCPcopy Create free account
hub / github.com/NGSolve/ngsolve / GetLFI

Method GetLFI

fem/integrator.cpp:2398–2406  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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>

Callers 1

linearform.cppFile · 0.80

Calls 1

SizeMethod · 0.45

Tested by

no test coverage detected