{"task": {"agent_timeout": 600, "task": "python-151", "verifier_timeout": 600, "instruction": "Please fix the function in Python__151.py such that all test cases pass.\nEnvironment has been set up for you to start working. You may assume all necessary tools are installed.\n\n# Problem Statement\ndef double_the_difference(lst):\n    return sum([i**2 for i in lst if i > 0 and \".\" not in str(i)])\n\ndef check(double_the_difference):\n\n    # Check some simple cases\n    assert double_the_difference([]) == 0 , \"This prints if this assert fails 1 (good for debugging!)\"\n    assert double_the_difference([5, 4]) == 25 , \"This prints if this assert fails 2 (good for debugging!)\"\n    assert double_the_difference([0.1, 0.2, 0.3]) == 0 , \"This prints if this assert fails 3 (good for debugging!)\"\n    assert double_the_difference([-10, -20, -30]) == 0 , \"This prints if this assert fails 4 (good for debugging!)\"\n\n\n    # Check some edge cases that are easy to work out by hand.\n    assert double_the_difference([-1, -2, 8]) == 0, \"This prints if this assert fails 5 (also good for debugging!)\"\n    assert double_the_difference([0.2, 3, 5]) == 34, \"This prints if this assert fails 6 (also good for debugging!)\"\n    lst = list(range(-99, 100, 2))\n    odd_sum = sum([i**2 for i in lst if i%2!=0 and i > 0])\n    assert double_the_difference(lst) == odd_sum , \"This prints if this assert fails 7 (good for debugging!)\"\n\ncheck(double_the_difference)\n\nIMPORTANT: You should ONLY interact with the environment provided to you AND NEVER ASK FOR HUMAN HELP.\nYou should NOT modify any existing test case files. If needed, you can add new test cases in a NEW file to reproduce the issue.\nYou SHOULD INCLUDE PROPER INDENTATION in your edit commands.\nWhen you think you have fixed the issue through code changes, please finish the interaction using the \"finish\" tool.\n\n", "memory": "2g", "runnable": false, "difficulty": "medium", "language": "", "cpus": 1, "instruction_truncated": false, "category": "debugging", "compose": false, "has_solution": true, "oracle": null, "docker_image": "", "taskset": "humanevalfix", "tags": ["debugging", "humanevalfix", "code-fixing"]}, "runs": []}