Replace an uncovered API with a high energy API
(prompt: Vec<String>, schedule: &Schedule)
| 72 | |
| 73 | /// Replace an uncovered API with a high energy API |
| 74 | fn prompt_replacement(prompt: Vec<String>, schedule: &Schedule) -> Vec<String> { |
| 75 | let prompt = prompt_energy_deletion(prompt, schedule); |
| 76 | prompt_insertion(prompt, schedule) |
| 77 | } |
| 78 | |
| 79 | fn crossover( |
| 80 | prompt1: Vec<String>, |
no test coverage detected