| 473 | |
| 474 | |
| 475 | shared_ptr<CoefficientFunction> TangentialVectorCF (int dim, bool consistent) |
| 476 | { |
| 477 | switch(dim) |
| 478 | { |
| 479 | case 1: |
| 480 | return make_shared<cl_TangentialVectorCF<1>>(consistent); |
| 481 | case 2: |
| 482 | return make_shared<cl_TangentialVectorCF<2>>(consistent); |
| 483 | default: |
| 484 | return make_shared<cl_TangentialVectorCF<3>>(consistent); |
| 485 | } |
| 486 | } |
| 487 | |
| 488 | |
| 489 | template <int DIMS, int DIMR> |
no outgoing calls
no test coverage detected