| summaryrefslogtreecommitdiff |
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-18 16:02:57 +0200 |
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-18 16:02:57 +0200 |
| commit | 900db6294298c1eeb8110b73ef8dafc8175ef4a1 (patch) | |
| tree | 0bc519c4c754e5baff25c9045a313fdda5b2ec24 /data/test/oracle_creator.py | |
| parent | 59d6ea1df12aa2fadcab1ec5cd22b99873721869 (diff) | |
Making progress on the automated testing...
Diffstat (limited to 'data/test/oracle_creator.py')
| -rwxr-xr-x | data/test/oracle_creator.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/data/test/oracle_creator.py b/data/test/oracle_creator.py index 8ef5a14..15f000b 100755 --- a/data/test/oracle_creator.py +++ b/data/test/oracle_creator.py @@ -12,7 +12,10 @@ for line in sys.stdin.readlines(): if (len(solutions) <= solution_number): solutions.insert(solution_number, list()) - solutions[solution_number].insert(int(solution_item_number), line_number) + solutions[solution_number].insert( + int(solution_item_number), + ("\"" + line_number + "\"") + ) for sol in solutions: print("(" + (' '.join(sol)) + ")") |


