| 54 | } |
| 55 | |
| 56 | void Clear () |
| 57 | { |
| 58 | for (auto& [k, p] : s_plans_d) { |
| 59 | Plan<double>::destroy_vendor_plan(p); |
| 60 | } |
| 61 | |
| 62 | for (auto& [k, p] : s_plans_f) { |
| 63 | Plan<float>::destroy_vendor_plan(p); |
| 64 | } |
| 65 | |
| 66 | s_plans_d.clear(); |
| 67 | s_plans_f.clear(); |
| 68 | } |
| 69 | |
| 70 | PlanD* get_vendor_plan_d (Key const& key) |
| 71 | { |