| 2468 | } |
| 2469 | |
| 2470 | void |
| 2471 | SymbolicBilinearFormIntegrator :: |
| 2472 | CalcLinearizedElementMatrix (const FiniteElement & fel, |
| 2473 | const ElementTransformation & trafo, |
| 2474 | FlatVector<Complex> elveclin, |
| 2475 | FlatMatrix<Complex> elmat, |
| 2476 | LocalHeap & lh) const |
| 2477 | { |
| 2478 | if(linearization) |
| 2479 | { |
| 2480 | T_CalcLinearizedElementMatrixFrozen(fel, trafo, elveclin, elmat, lh); |
| 2481 | return; |
| 2482 | } |
| 2483 | CalcElementMatrix(fel, trafo, elmat, lh); |
| 2484 | } |
| 2485 | |
| 2486 | void |
| 2487 | SymbolicBilinearFormIntegrator :: |
nothing calls this directly
no test coverage detected