├── .config └── dotnet-tools.json ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── api-samples ├── Detection │ ├── Detection.csproj │ └── SampleProgram.cs ├── Extraction.Json │ ├── Extraction.Json.csproj │ └── SampleProgram.cs ├── Extraction.Text │ ├── Extraction.Text.csproj │ └── SampleProgram.cs ├── Extraction.Web │ ├── Extraction.Web.csproj │ ├── SampleDocuments │ │ ├── FictitiousName_10212015_181544.csv │ │ ├── sample-document-1.html │ │ └── sample-document-2.html │ └── SampleProgram.cs ├── Matching.Text │ ├── Matching.Text.csproj │ └── Program.cs ├── Read.FlatFile │ ├── Read.FlatFile.csproj │ └── SampleProgram.cs ├── Split.Text │ ├── Program.cs │ └── Split.Text.csproj ├── Transformation.Formula │ ├── SampleProgram.cs │ └── Transformation.Formula.csproj ├── Transformation.Json │ ├── JsonToJsonSample.cs │ ├── SampleProgram.cs │ ├── TableToJsonSample.cs │ └── Transformation.Json.csproj ├── Transformation.Text │ ├── SampleProgram.cs │ ├── SimpleAPI.cs │ └── Transformation.Text.csproj └── api-samples.sln ├── dsl-samples ├── MergeConflictsResolution │ ├── MergeConflictsResolution.sln │ ├── MergeConflictsResolution │ │ ├── LanguageGrammar.cs │ │ ├── Learner.cs │ │ ├── Loader.cs │ │ ├── MergeConflict.cs │ │ ├── MergeConflictsResolution.csproj │ │ ├── Program.cs │ │ ├── RankingScore.cs │ │ ├── ResolutionExample.cs │ │ ├── Semantics.cs │ │ ├── Utils.cs │ │ └── WitnessFunctions.cs │ ├── MergeConflictsResolutionConsole │ │ ├── MergeConflictsResolutionConsole.csproj │ │ └── Samples.cs │ └── README.md ├── ProseSample │ ├── ProseSample.Substrings.Semantics │ │ ├── ProseSample.Substrings.Semantics.csproj │ │ ├── RankingScore.cs │ │ ├── RegexUtils.cs │ │ ├── Semantics.cs │ │ └── WitnessFunctions.cs │ ├── ProseSample.Substrings │ │ ├── Grammar.cs │ │ ├── ProseSample.Substrings.csproj │ │ └── ProseSample.Substrings.grammar │ ├── ProseSample.TextExtraction │ │ ├── ProseSample.TextExtraction.csproj │ │ ├── ProseSample.TextExtraction.grammar │ │ ├── RankingScore.cs │ │ ├── Semantics.cs │ │ └── WitnessFunctions.cs │ ├── ProseSample.sln │ ├── ProseSample │ │ ├── Program.cs │ │ ├── ProseSample.csproj │ │ ├── Utils.cs │ │ └── learning.log.xml │ └── benchmarks │ │ ├── areas.txt │ │ ├── emails.tsv │ │ └── popl13-erc.txt └── tutorial │ ├── Readme.md │ ├── part1a-complete │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part1a │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part1b-attempt1-complete │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part1b-attempt1 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part1b-attempt2-complete │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part1b-attempt2 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part1c-complete │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part1c │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part1d-complete │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part1d │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part2a-complete │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part2a │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ ├── part2b-complete │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── ProseTutorial.Tests │ │ ├── ProseTutorial.Tests.csproj │ │ └── SubstringTest.cs │ ├── ProseTutorial │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── Program.cs │ │ ├── ProseTutorial.csproj │ │ └── synthesis │ │ │ ├── RankingScore.cs │ │ │ ├── Semantics.cs │ │ │ ├── WitnessFunctions.cs │ │ │ └── grammar │ │ │ └── substring.grammar │ └── prose.sln │ └── part2b │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── ProseTutorial.Tests │ ├── ProseTutorial.Tests.csproj │ └── SubstringTest.cs │ ├── ProseTutorial │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Program.cs │ ├── ProseTutorial.csproj │ └── synthesis │ │ ├── RankingScore.cs │ │ ├── Semantics.cs │ │ ├── WitnessFunctions.cs │ │ └── grammar │ │ └── substring.grammar │ └── prose.sln ├── misc ├── BenchmarkDriver │ ├── AbstractInteractiveRunner.cs │ ├── AbstractRunner.cs │ ├── BenchmarkDriver.csproj │ ├── FullSuiteRunner.cs │ ├── IRunner.cs │ ├── Options.cs │ ├── Program.cs │ ├── SplitTextRunner.cs │ ├── TransformationTextRunner.cs │ └── Utils.cs ├── CCSynth │ ├── CC │ │ ├── Airline-Regression-Experiment.ipynb │ │ ├── DataInsights │ │ │ ├── LICENSE.txt │ │ │ ├── MANIFEST.in │ │ │ ├── NOTICE.txt │ │ │ ├── README.md │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── src │ │ │ │ └── prose │ │ │ │ ├── __init__.py │ │ │ │ └── datainsights │ │ │ │ ├── __init__.py │ │ │ │ ├── _api │ │ │ │ └── _learn_assertions.py │ │ │ │ ├── _assertion │ │ │ │ ├── __init__.py │ │ │ │ ├── _assertion_helper.py │ │ │ │ ├── _decision_tree_assertions.py │ │ │ │ ├── _disjunctive_assertions.py │ │ │ │ └── _pca_assertions.py │ │ │ │ ├── _learn_assertions.py │ │ │ │ └── _version.py │ │ ├── EVL-Drift-Experiments.ipynb │ │ └── Readme.md │ └── readme.md ├── GrACE │ ├── .env │ ├── .gitignore │ ├── LICENSE.txt │ ├── NOTICE.txt │ ├── README.md │ ├── accelerate.yaml │ ├── evaluate_c3po.py │ ├── preprocess │ │ ├── few_shot.py │ │ ├── run.py │ │ └── utils.py │ ├── requirements.txt │ ├── splits_50.json │ ├── src │ │ ├── dataset.py │ │ ├── eval_utils.py │ │ └── models.py │ ├── test_splits_50.json │ ├── train_t5.py │ ├── tutorial.ipynb │ ├── tutorial_examples │ │ ├── ex_input │ │ │ ├── editing_intent.json │ │ │ ├── processed_example.json │ │ │ ├── v0.cs │ │ │ ├── v1.cs │ │ │ └── v2.cs │ │ ├── http_error_codes │ │ │ ├── editing_intent.json │ │ │ ├── processed_example.json │ │ │ ├── v0.cs │ │ │ ├── v1.cs │ │ │ └── v2.cs │ │ └── serialization_import │ │ │ ├── editing_intent.json │ │ │ ├── processed_example.json │ │ │ ├── v0.cs │ │ │ ├── v1.cs │ │ │ └── v2.cs │ ├── tutorial_requirements.txt │ └── tutorial_utils │ │ ├── preprocessing.py │ │ └── printing.py ├── MetaReflection │ └── README.md └── SWE-Sharp-Bench │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── SUPPORT.md │ ├── data │ ├── benchmark │ │ └── swe-sharp-bench.csv │ └── supplementary_data │ │ ├── instance_level_statistics │ │ ├── swe_bench_java_instances.json │ │ ├── swe_bench_verified_instances.json │ │ └── swe_sharp_bench_instances.json │ │ ├── multi_swe_bench_patch_statistics.csv │ │ ├── swe_bench_verfied_patch_statistics.csv │ │ └── swe_sharp_bench_comprehensive_statistics.csv │ ├── experiments │ ├── analysis │ │ └── extract_instance_statistics.py │ └── evaluation │ │ ├── 20250831_openhands_gpt-4-1 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17462 │ │ │ └── source_metadata.json │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12558 │ │ │ └── source_metadata.json │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ └── source_metadata.json │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── missing_instances.txt │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2488 │ │ │ └── source_metadata.json │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1513 │ │ │ └── source_metadata.json │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ └── trajectory.json │ │ ├── 20250831_openhands_gpt-4o │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── missing_instances.txt │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ └── trajectory.json │ │ ├── 20250831_openhands_gpt-5 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── missing_instances.txt │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ └── trajectory.json │ │ ├── 20250831_openhands_o4-mini │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1352 │ │ │ └── source_metadata.json │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14439 │ │ │ └── source_metadata.json │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15498 │ │ │ └── source_metadata.json │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16214 │ │ │ └── source_metadata.json │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1077 │ │ │ └── source_metadata.json │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ └── source_metadata.json │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── missing_instances.txt │ │ ├── polly-1316 │ │ │ └── source_metadata.json │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1361 │ │ │ └── source_metadata.json │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1555 │ │ │ └── source_metadata.json │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2543 │ │ │ └── source_metadata.json │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ └── source_metadata.json │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ └── trajectory.json │ │ ├── 20250831_openhands_sonnet-3-5 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── missing_instances.txt │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ └── trajectory.json │ │ ├── 20250831_openhands_sonnet-3-7 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── missing_instances.txt │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ └── trajectory.json │ │ ├── 20250831_openhands_sonnet-4 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ └── source_metadata.json │ │ ├── ardalis__cleanarchitecture-546 │ │ │ └── source_metadata.json │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-14928 │ │ │ └── source_metadata.json │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ └── source_metadata.json │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-32613 │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ └── source_metadata.json │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── missing_instances.txt │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ └── trajectory.json │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ └── trajectory.json │ │ ├── 20250831_swe-agent_gpt-4-1 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ └── logs │ │ │ │ └── eval.log │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ └── logs │ │ │ │ └── eval.log │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ └── logs │ │ │ │ └── eval.log │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── 20250831_swe-agent_gpt-4o │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ └── logs │ │ │ │ └── eval.log │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── 20250831_swe-agent_gpt-5 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── 20250831_swe-agent_o3 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── missing_instances.txt │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1321 │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1326 │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1528 │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── 20250831_swe-agent_sonnet-3-5 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2103 │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── 20250831_swe-agent_sonnet-3-7 │ │ ├── ardalis__cleanarchitecture-530 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-546 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-918 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1352 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1362 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1364 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1424 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── autofac__autofac-1451 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-12666 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13185 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13188 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13969 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14013 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14048 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14439 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14838 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14900 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14913 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14928 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15423 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15493 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15498 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15640 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15667 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15722 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15726 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16090 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16102 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16168 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16214 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16557 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16564 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16575 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16619 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16710 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16712 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17073 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17135 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17171 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17178 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17209 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17292 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17462 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17465 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17638 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17657 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18634 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18694 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1076 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1077 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1079 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── devlooped__moq-1081 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2254 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2280 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2307 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2368 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2395 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2453 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2491 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27128 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27210 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27291 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-27428 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-28261 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-32613 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-33106 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34052 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── dotnet__efcore-34832 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── gui-cs__terminal-gui-3195 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12550 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12558 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12621 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── joshclose__csvhelper-2132 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── missing_instances.txt │ │ ├── polly-1316 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1321 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1326 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1361 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1436 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1472 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1528 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1555 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1579 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1620 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1852 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-1898 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2068 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── polly-2164 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1676 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-1962 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2020 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2021 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── restsharp__restsharp-2241 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1897 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1903 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1906 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1908 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1926 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1927 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-1955 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2055 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2083 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2103 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── serilog__serilog-2116 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-1234 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2066 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2298 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2322 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2488 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2541 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2543 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2618 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1303 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1304 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1308 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1338 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1458 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1503 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1504 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1513 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1531 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1552 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2397 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2480 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2654 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1769 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1789 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ ├── threemammals__ocelot-1790 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ │ ├── agent.traj │ │ │ │ ├── debug.log │ │ │ │ └── info.log │ │ └── threemammals__ocelot-2170 │ │ │ ├── eval_report.json │ │ │ ├── logs │ │ │ └── eval.log │ │ │ ├── source_metadata.json │ │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ └── 20250831_swe-agent_sonnet-4 │ │ ├── ardalis__cleanarchitecture-530 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-546 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── ardalis__cleanarchitecture-918 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── autofac__autofac-1352 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── autofac__autofac-1362 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── autofac__autofac-1364 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── autofac__autofac-1424 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── autofac__autofac-1428 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── autofac__autofac-1451 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-12666 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13185 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13188 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-13969 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14013 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14048 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14439 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14838 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14900 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14913 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-14928 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15423 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15493 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15498 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15640 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15667 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15722 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-15726 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16090 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16102 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16168 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16214 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16557 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16564 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16575 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16619 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16710 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-16712 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17073 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17135 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17171 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17178 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17209 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17292 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17326 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17462 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17465 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17638 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-17657 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18634 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── avaloniaui__avalonia-18694 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── devlooped__moq-1076 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── devlooped__moq-1077 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── devlooped__moq-1079 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── devlooped__moq-1081 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2254 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2280 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2304 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2307 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2368 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2395 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2453 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__benchmarkdotnet-2491 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__efcore-27128 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__efcore-27210 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__efcore-27291 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__efcore-27428 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__efcore-28261 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__efcore-32613 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__efcore-33106 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__efcore-34052 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── dotnet__efcore-34832 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── gui-cs__terminal-gui-3195 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12550 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12558 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── jellyfin__jellyfin-12621 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── joshclose__csvhelper-2132 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1798 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1824 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1842 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1859 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1898 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1905 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1907 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1910 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-1962 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2002 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2022 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2023 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2031 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2036 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2037 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2045 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2056 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── messagepack-csharp__messagepack-csharp-2057 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1316 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1321 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1326 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1361 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1436 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1472 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1528 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1555 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1579 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1620 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1852 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-1898 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-2068 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── polly-2164 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── restsharp__restsharp-1676 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── restsharp__restsharp-1962 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── restsharp__restsharp-2020 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── restsharp__restsharp-2021 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── restsharp__restsharp-2241 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── results.json │ │ ├── serilog__serilog-1890 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-1897 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-1903 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-1906 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-1908 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-1926 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-1927 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-1955 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-2055 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-2083 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-2103 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── serilog__serilog-2116 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-1234 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2066 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2298 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2322 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2488 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2541 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2543 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── sixlabors__imagesharp-2618 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1303 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1304 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1308 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1338 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1458 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1503 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1504 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1513 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1531 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── spectreconsole__spectre-console-1552 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2397 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2480 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── stackexchange__stackexchangeredis-2654 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── threemammals__ocelot-1769 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── threemammals__ocelot-1789 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ ├── threemammals__ocelot-1790 │ │ ├── eval_report.json │ │ ├── logs │ │ │ └── eval.log │ │ └── trajectories │ │ │ ├── agent.traj │ │ │ ├── debug.log │ │ │ └── info.log │ │ └── threemammals__ocelot-2170 │ │ ├── eval_report.json │ │ ├── logs │ │ └── eval.log │ │ └── trajectories │ │ ├── agent.traj │ │ ├── debug.log │ │ └── info.log │ └── harness │ ├── README.md │ ├── setup.py │ └── swe_sharp_bench │ ├── __init__.py │ ├── cli.py │ ├── constants.py │ ├── convert_csv_to_json.py │ ├── create_scripts.py │ ├── docker_build.py │ ├── dockerfiles │ ├── __init__.py │ └── csharp.py │ ├── get_top_repos.py │ ├── grading.py │ ├── log_parsers.py │ ├── reporting.py │ ├── run_instances.py │ ├── scrape_instances.py │ └── test_spec.py └── release-notes ├── 1-x.md ├── 10-x.md ├── 2-x.md ├── 3-x.md ├── 4-x.md ├── 5-x.md ├── 6-x.md ├── 7-x.md ├── 8-x.md ├── 9-x.md └── readme.md /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /api-samples/Detection/Detection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Detection/Detection.csproj -------------------------------------------------------------------------------- /api-samples/Detection/SampleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Detection/SampleProgram.cs -------------------------------------------------------------------------------- /api-samples/Extraction.Json/Extraction.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Extraction.Json/Extraction.Json.csproj -------------------------------------------------------------------------------- /api-samples/Extraction.Json/SampleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Extraction.Json/SampleProgram.cs -------------------------------------------------------------------------------- /api-samples/Extraction.Text/Extraction.Text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Extraction.Text/Extraction.Text.csproj -------------------------------------------------------------------------------- /api-samples/Extraction.Text/SampleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Extraction.Text/SampleProgram.cs -------------------------------------------------------------------------------- /api-samples/Extraction.Web/Extraction.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Extraction.Web/Extraction.Web.csproj -------------------------------------------------------------------------------- /api-samples/Extraction.Web/SampleDocuments/FictitiousName_10212015_181544.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Extraction.Web/SampleDocuments/FictitiousName_10212015_181544.csv -------------------------------------------------------------------------------- /api-samples/Extraction.Web/SampleDocuments/sample-document-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Extraction.Web/SampleDocuments/sample-document-1.html -------------------------------------------------------------------------------- /api-samples/Extraction.Web/SampleDocuments/sample-document-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Extraction.Web/SampleDocuments/sample-document-2.html -------------------------------------------------------------------------------- /api-samples/Extraction.Web/SampleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Extraction.Web/SampleProgram.cs -------------------------------------------------------------------------------- /api-samples/Matching.Text/Matching.Text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Matching.Text/Matching.Text.csproj -------------------------------------------------------------------------------- /api-samples/Matching.Text/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Matching.Text/Program.cs -------------------------------------------------------------------------------- /api-samples/Read.FlatFile/Read.FlatFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Read.FlatFile/Read.FlatFile.csproj -------------------------------------------------------------------------------- /api-samples/Read.FlatFile/SampleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Read.FlatFile/SampleProgram.cs -------------------------------------------------------------------------------- /api-samples/Split.Text/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Split.Text/Program.cs -------------------------------------------------------------------------------- /api-samples/Split.Text/Split.Text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Split.Text/Split.Text.csproj -------------------------------------------------------------------------------- /api-samples/Transformation.Formula/SampleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Transformation.Formula/SampleProgram.cs -------------------------------------------------------------------------------- /api-samples/Transformation.Formula/Transformation.Formula.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Transformation.Formula/Transformation.Formula.csproj -------------------------------------------------------------------------------- /api-samples/Transformation.Json/JsonToJsonSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Transformation.Json/JsonToJsonSample.cs -------------------------------------------------------------------------------- /api-samples/Transformation.Json/SampleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Transformation.Json/SampleProgram.cs -------------------------------------------------------------------------------- /api-samples/Transformation.Json/TableToJsonSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Transformation.Json/TableToJsonSample.cs -------------------------------------------------------------------------------- /api-samples/Transformation.Json/Transformation.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Transformation.Json/Transformation.Json.csproj -------------------------------------------------------------------------------- /api-samples/Transformation.Text/SampleProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Transformation.Text/SampleProgram.cs -------------------------------------------------------------------------------- /api-samples/Transformation.Text/SimpleAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Transformation.Text/SimpleAPI.cs -------------------------------------------------------------------------------- /api-samples/Transformation.Text/Transformation.Text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/Transformation.Text/Transformation.Text.csproj -------------------------------------------------------------------------------- /api-samples/api-samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/api-samples/api-samples.sln -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution.sln -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/LanguageGrammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/LanguageGrammar.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Learner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Learner.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Loader.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/MergeConflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/MergeConflict.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/MergeConflictsResolution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/MergeConflictsResolution.csproj -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Program.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/ResolutionExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/ResolutionExample.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/Utils.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolution/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolution/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/MergeConflictsResolutionConsole/Samples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/MergeConflictsResolutionConsole/Samples.cs -------------------------------------------------------------------------------- /dsl-samples/MergeConflictsResolution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/MergeConflictsResolution/README.md -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.Substrings.Semantics/ProseSample.Substrings.Semantics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.Substrings.Semantics/ProseSample.Substrings.Semantics.csproj -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.Substrings.Semantics/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.Substrings.Semantics/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.Substrings.Semantics/RegexUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.Substrings.Semantics/RegexUtils.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.Substrings.Semantics/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.Substrings.Semantics/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.Substrings.Semantics/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.Substrings.Semantics/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.Substrings/Grammar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.Substrings/Grammar.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.Substrings/ProseSample.Substrings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.Substrings/ProseSample.Substrings.csproj -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.Substrings/ProseSample.Substrings.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.Substrings/ProseSample.Substrings.grammar -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.TextExtraction/ProseSample.TextExtraction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.TextExtraction/ProseSample.TextExtraction.csproj -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.TextExtraction/ProseSample.TextExtraction.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.TextExtraction/ProseSample.TextExtraction.grammar -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.TextExtraction/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.TextExtraction/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.TextExtraction/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.TextExtraction/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.TextExtraction/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.TextExtraction/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample.sln -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample/Program.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample/ProseSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample/ProseSample.csproj -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample/Utils.cs -------------------------------------------------------------------------------- /dsl-samples/ProseSample/ProseSample/learning.log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/ProseSample/learning.log.xml -------------------------------------------------------------------------------- /dsl-samples/ProseSample/benchmarks/areas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/benchmarks/areas.txt -------------------------------------------------------------------------------- /dsl-samples/ProseSample/benchmarks/emails.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/benchmarks/emails.tsv -------------------------------------------------------------------------------- /dsl-samples/ProseSample/benchmarks/popl13-erc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/ProseSample/benchmarks/popl13-erc.txt -------------------------------------------------------------------------------- /dsl-samples/tutorial/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/Readme.md -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a-complete/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a-complete/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1a/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1a/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1-complete/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1-complete/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt1/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt1/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2-complete/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2-complete/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1b-attempt2/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1b-attempt2/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c-complete/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c-complete/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1c/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1c/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d-complete/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d-complete/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part1d/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part1d/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a-complete/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a-complete/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2a/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2a/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b-complete/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b-complete/prose.sln -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial.Tests/ProseTutorial.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial.Tests/ProseTutorial.Tests.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial.Tests/SubstringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial.Tests/SubstringTest.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial/.vscode/launch.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial/.vscode/tasks.json -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial/Program.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial/ProseTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial/ProseTutorial.csproj -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial/synthesis/RankingScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial/synthesis/RankingScore.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial/synthesis/Semantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial/synthesis/Semantics.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial/synthesis/WitnessFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial/synthesis/WitnessFunctions.cs -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/ProseTutorial/synthesis/grammar/substring.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/ProseTutorial/synthesis/grammar/substring.grammar -------------------------------------------------------------------------------- /dsl-samples/tutorial/part2b/prose.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/dsl-samples/tutorial/part2b/prose.sln -------------------------------------------------------------------------------- /misc/BenchmarkDriver/AbstractInteractiveRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/AbstractInteractiveRunner.cs -------------------------------------------------------------------------------- /misc/BenchmarkDriver/AbstractRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/AbstractRunner.cs -------------------------------------------------------------------------------- /misc/BenchmarkDriver/BenchmarkDriver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/BenchmarkDriver.csproj -------------------------------------------------------------------------------- /misc/BenchmarkDriver/FullSuiteRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/FullSuiteRunner.cs -------------------------------------------------------------------------------- /misc/BenchmarkDriver/IRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/IRunner.cs -------------------------------------------------------------------------------- /misc/BenchmarkDriver/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/Options.cs -------------------------------------------------------------------------------- /misc/BenchmarkDriver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/Program.cs -------------------------------------------------------------------------------- /misc/BenchmarkDriver/SplitTextRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/SplitTextRunner.cs -------------------------------------------------------------------------------- /misc/BenchmarkDriver/TransformationTextRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/TransformationTextRunner.cs -------------------------------------------------------------------------------- /misc/BenchmarkDriver/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/BenchmarkDriver/Utils.cs -------------------------------------------------------------------------------- /misc/CCSynth/CC/Airline-Regression-Experiment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/Airline-Regression-Experiment.ipynb -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/LICENSE.txt -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/MANIFEST.in -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/NOTICE.txt -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/README.md -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/setup.cfg -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/setup.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/__init__.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/datainsights/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/datainsights/__init__.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/datainsights/_api/_learn_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/datainsights/_api/_learn_assertions.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/__init__.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/_assertion_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/_assertion_helper.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/_decision_tree_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/_decision_tree_assertions.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/_disjunctive_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/_disjunctive_assertions.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/_pca_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/datainsights/_assertion/_pca_assertions.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/datainsights/_learn_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/datainsights/_learn_assertions.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/DataInsights/src/prose/datainsights/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/DataInsights/src/prose/datainsights/_version.py -------------------------------------------------------------------------------- /misc/CCSynth/CC/EVL-Drift-Experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/EVL-Drift-Experiments.ipynb -------------------------------------------------------------------------------- /misc/CCSynth/CC/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/CC/Readme.md -------------------------------------------------------------------------------- /misc/CCSynth/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/CCSynth/readme.md -------------------------------------------------------------------------------- /misc/GrACE/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/.env -------------------------------------------------------------------------------- /misc/GrACE/.gitignore: -------------------------------------------------------------------------------- 1 | Models/ 2 | __pycache__ 3 | *.pyc 4 | Temp/ -------------------------------------------------------------------------------- /misc/GrACE/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/LICENSE.txt -------------------------------------------------------------------------------- /misc/GrACE/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/NOTICE.txt -------------------------------------------------------------------------------- /misc/GrACE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/README.md -------------------------------------------------------------------------------- /misc/GrACE/accelerate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/accelerate.yaml -------------------------------------------------------------------------------- /misc/GrACE/evaluate_c3po.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/evaluate_c3po.py -------------------------------------------------------------------------------- /misc/GrACE/preprocess/few_shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/preprocess/few_shot.py -------------------------------------------------------------------------------- /misc/GrACE/preprocess/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/preprocess/run.py -------------------------------------------------------------------------------- /misc/GrACE/preprocess/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/preprocess/utils.py -------------------------------------------------------------------------------- /misc/GrACE/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/requirements.txt -------------------------------------------------------------------------------- /misc/GrACE/splits_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/splits_50.json -------------------------------------------------------------------------------- /misc/GrACE/src/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/src/dataset.py -------------------------------------------------------------------------------- /misc/GrACE/src/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/src/eval_utils.py -------------------------------------------------------------------------------- /misc/GrACE/src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/src/models.py -------------------------------------------------------------------------------- /misc/GrACE/test_splits_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/test_splits_50.json -------------------------------------------------------------------------------- /misc/GrACE/train_t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/train_t5.py -------------------------------------------------------------------------------- /misc/GrACE/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial.ipynb -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/ex_input/editing_intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/ex_input/editing_intent.json -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/ex_input/processed_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/ex_input/processed_example.json -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/ex_input/v0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/ex_input/v0.cs -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/ex_input/v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/ex_input/v1.cs -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/ex_input/v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/ex_input/v2.cs -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/http_error_codes/editing_intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/http_error_codes/editing_intent.json -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/http_error_codes/processed_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/http_error_codes/processed_example.json -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/http_error_codes/v0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/http_error_codes/v0.cs -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/http_error_codes/v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/http_error_codes/v1.cs -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/http_error_codes/v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/http_error_codes/v2.cs -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/serialization_import/editing_intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/serialization_import/editing_intent.json -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/serialization_import/processed_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/serialization_import/processed_example.json -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/serialization_import/v0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/serialization_import/v0.cs -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/serialization_import/v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/serialization_import/v1.cs -------------------------------------------------------------------------------- /misc/GrACE/tutorial_examples/serialization_import/v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_examples/serialization_import/v2.cs -------------------------------------------------------------------------------- /misc/GrACE/tutorial_requirements.txt: -------------------------------------------------------------------------------- 1 | torch==1.31.1 2 | transformers==4.30.0 -------------------------------------------------------------------------------- /misc/GrACE/tutorial_utils/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_utils/preprocessing.py -------------------------------------------------------------------------------- /misc/GrACE/tutorial_utils/printing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/GrACE/tutorial_utils/printing.py -------------------------------------------------------------------------------- /misc/MetaReflection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/MetaReflection/README.md -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/.gitattributes -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/.gitignore -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/LICENSE -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/NOTICE -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/README.md -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/SUPPORT.md -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/data/benchmark/swe-sharp-bench.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/data/benchmark/swe-sharp-bench.csv -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/data/supplementary_data/multi_swe_bench_patch_statistics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/data/supplementary_data/multi_swe_bench_patch_statistics.csv -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/data/supplementary_data/swe_bench_verfied_patch_statistics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/data/supplementary_data/swe_bench_verfied_patch_statistics.csv -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/data/supplementary_data/swe_sharp_bench_comprehensive_statistics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/data/supplementary_data/swe_sharp_bench_comprehensive_statistics.csv -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/analysis/extract_instance_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/analysis/extract_instance_statistics.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/missing_instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/missing_instances.txt -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1316/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1316/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1321/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1321/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1326/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1326/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1361/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1361/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1436/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1436/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1472/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1472/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1528/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1528/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1555/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1555/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1579/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1579/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1620/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1620/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1852/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1852/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1898/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1898/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-2068/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-2068/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-2164/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-2164/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4-1/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/missing_instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/missing_instances.txt -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1316/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1316/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1555/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1555/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1579/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1579/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1620/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1620/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-2068/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-2068/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-4o/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/missing_instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/missing_instances.txt -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1316/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1316/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1321/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1321/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1326/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1326/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1361/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1361/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1436/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1436/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1472/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1472/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1528/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1528/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1555/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1555/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1579/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1579/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1620/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1620/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1852/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1852/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1898/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1898/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-2068/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-2068/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-2164/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-2164/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_gpt-5/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/missing_instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/missing_instances.txt -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1321/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1321/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1326/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1326/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1436/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1436/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1472/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1472/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1528/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1528/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1579/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1579/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1620/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1620/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1852/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1852/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1898/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1898/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-2068/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-2068/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-2164/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-2164/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_o4-mini/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/missing_instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/missing_instances.txt -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-5/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/missing_instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/missing_instances.txt -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-3-7/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/missing_instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/missing_instances.txt -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_openhands_sonnet-4/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1316/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1316/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1321/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1321/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1326/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1326/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1361/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1361/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1436/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1436/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1472/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1472/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1528/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1528/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1555/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1555/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1579/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1579/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1620/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1620/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1852/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1852/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1898/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1898/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-2068/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-2068/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-2164/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-2164/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4-1/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1316/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1316/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1321/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1321/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1326/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1326/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1361/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1361/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1436/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1436/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1472/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1472/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1528/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1528/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1555/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1555/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1579/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1579/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1620/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1620/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1852/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1852/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1898/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1898/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-2068/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-2068/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-2164/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-2164/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-4o/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/avaloniaui__avalonia-13185/eval_report.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1316/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1316/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1321/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1321/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1326/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1326/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1361/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1361/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1436/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1436/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1472/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1472/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1528/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1528/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1555/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1555/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1579/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1579/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1620/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1620/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1852/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1852/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1898/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1898/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-2068/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-2068/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-2164/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-2164/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_gpt-5/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/missing_instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/missing_instances.txt -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1316/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1316/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1316/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1316/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1321/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1321/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1326/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1326/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1361/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1361/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1361/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1361/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1436/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1436/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1436/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1436/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1472/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1472/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1472/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1472/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1528/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1528/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1555/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1555/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1555/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1555/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1579/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1579/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1579/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1579/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1620/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1620/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1620/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1620/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1852/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1852/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1852/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1852/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1898/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1898/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1898/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-1898/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2068/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2068/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2068/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2068/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2164/eval_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2164/eval_report.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2164/trajectories/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/polly-2164/trajectories/info.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_o3/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-5/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/missing_instances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/missing_instances.txt -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-3-7/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1316/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1316/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1321/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1321/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1326/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1326/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1361/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1361/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1436/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1436/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1472/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1472/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1528/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1528/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1555/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1555/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1579/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1579/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1620/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1620/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1852/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1852/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1898/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-1898/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-2068/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-2068/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-2164/logs/eval.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/polly-2164/logs/eval.log -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/experiments/evaluation/20250831_swe-agent_sonnet-4/results.json -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/README.md -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/setup.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/cli.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/constants.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/convert_csv_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/convert_csv_to_json.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/create_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/create_scripts.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/docker_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/docker_build.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/dockerfiles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/dockerfiles/__init__.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/dockerfiles/csharp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/dockerfiles/csharp.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/get_top_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/get_top_repos.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/grading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/grading.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/log_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/log_parsers.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/reporting.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/run_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/run_instances.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/scrape_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/scrape_instances.py -------------------------------------------------------------------------------- /misc/SWE-Sharp-Bench/harness/swe_sharp_bench/test_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/misc/SWE-Sharp-Bench/harness/swe_sharp_bench/test_spec.py -------------------------------------------------------------------------------- /release-notes/1-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/1-x.md -------------------------------------------------------------------------------- /release-notes/10-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/10-x.md -------------------------------------------------------------------------------- /release-notes/2-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/2-x.md -------------------------------------------------------------------------------- /release-notes/3-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/3-x.md -------------------------------------------------------------------------------- /release-notes/4-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/4-x.md -------------------------------------------------------------------------------- /release-notes/5-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/5-x.md -------------------------------------------------------------------------------- /release-notes/6-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/6-x.md -------------------------------------------------------------------------------- /release-notes/7-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/7-x.md -------------------------------------------------------------------------------- /release-notes/8-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/8-x.md -------------------------------------------------------------------------------- /release-notes/9-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/9-x.md -------------------------------------------------------------------------------- /release-notes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose/HEAD/release-notes/readme.md --------------------------------------------------------------------------------