-
Notifications
You must be signed in to change notification settings - Fork 745
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
openevolve/openevolve/prompt/templates.py
Lines 45 to 57 in a631841
| Example of valid diff format: | |
| <<<<<<< SEARCH | |
| for i in range(m): | |
| for j in range(p): | |
| for k in range(n): | |
| C[i, j] += A[i, k] * B[k, j] | |
| ======= | |
| # Reorder loops for better memory access pattern | |
| for i in range(m): | |
| for k in range(n): | |
| for j in range(p): | |
| C[i, j] += A[i, k] * B[k, j] | |
| >>>>>>> REPLACE |
Can we change this ======?
This is frequently used in code comments, especially those generated by claude / codex. I think this is collision is causing some weird behaviour.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers