(prompt: &mut Prompt)
| 24 | } |
| 25 | |
| 26 | pub fn prompt_shuffle(prompt: &mut Prompt) { |
| 27 | log::info!("Shuffle the prompt."); |
| 28 | let combination = rand_choose_combination(crate::program::rand::rand_comb_len()); |
| 29 | prompt.set_combination(combination); |
| 30 | } |
| 31 | |
| 32 | /// Insert an high energy API into combination |
| 33 | fn prompt_insertion(prompt: Vec<String>, schedule: &Schedule) -> Vec<String> { |
no test coverage detected