| 791 | |
| 792 | |
| 793 | shared_ptr<CoefficientFunction> WeingartenCF (int dim) |
| 794 | { |
| 795 | switch(dim) |
| 796 | { |
| 797 | case 1: |
| 798 | throw Exception ("no WeingartenCF in 1D"); |
| 799 | // return make_shared<WeingartenCF<1>>(); |
| 800 | case 2: |
| 801 | return make_shared<cl_WeingartenCF<2>>(); |
| 802 | default: |
| 803 | return make_shared<cl_WeingartenCF<3>>(); |
| 804 | } |
| 805 | } |
| 806 | |
| 807 | |
| 808 | template <int D> |
no outgoing calls
no test coverage detected