Get a simple program for evolution testing
()
| 150 | ] |
| 151 | |
| 152 | def get_evolution_test_program(): |
| 153 | """Get a simple program for evolution testing""" |
| 154 | return """# EVOLVE-BLOCK-START |
| 155 | def solve(x): |
| 156 | return x * 2 |
| 157 | # EVOLVE-BLOCK-END |
| 158 | """ |
| 159 | |
| 160 | def get_evolution_test_evaluator(): |
| 161 | """Get a simple evaluator for evolution testing""" |