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

Method GetBFI

fem/integrator.cpp:2341–2349  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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,

Callers 1

FixDimensionFunction · 0.80

Calls 1

SizeMethod · 0.45

Tested by

no test coverage detected