Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- vector<vector<vector<vector<vector<vector<float>>>>>> vector_mutation(const vector<vector<vector<vector<vector<vector<float>>>>>> INPUTS) {
- vector<vector<vector<vector<vector<vector<float>>>>>> output;
- for(short a = 0; a < INPUTS.size(); ++a) {
- for(short b = 0; b < INPUT[a].size(); ++b) {
- for(short c = 0; c < INPUTS[a][b].size(); ++c) {
- for(short d = 0; d < INPUTS[a][b][c].size(); ++c) {
- for(short e = 0; e < INPUTS[a][b][c][d].size()) {
- output[a][b][c][d][e] = greedy_adjusted_value(INPUTS[a][b][c][d][e]);
- }
- }
- }
- }
- }
- return output;
- }
- void rewrite_file(const vector<vector<vector<vector<vector<vector<float>>>>>> INPUT, vector<double> file_success, string base_file_name) {
- //generate the mutations
- //run the mutations, output the score values
- //take the highest of the scores, print the copies of the top files
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement