├── LICENSE ├── README.md └── refactor-benchmark ├── analyzer_cli_DebugAnalyzer__make_source_table ├── .docs │ └── instructions.md ├── analyzer_cli.py └── analyzer_cli_test.py ├── autodetector_MigrationAutodetector__trim_to_apps ├── .docs │ └── instructions.md ├── autodetector.py └── autodetector_test.py ├── autodetector_MigrationAutodetector_check_dependency ├── .docs │ └── instructions.md ├── autodetector.py └── autodetector_test.py ├── autosave_AutosaveForPlugin_get_files_to_recover ├── .docs │ └── instructions.md ├── autosave.py └── autosave_test.py ├── backends_ModelBackend_with_perm ├── .docs │ └── instructions.md ├── backends.py └── backends_test.py ├── base_BaseHandler_adapt_method_mode ├── .docs │ └── instructions.md ├── base.py └── base_test.py ├── base_BaseHandler_check_response ├── .docs │ └── instructions.md ├── base.py └── base_test.py ├── baseconv_BaseConverter_convert ├── .docs │ └── instructions.md ├── baseconv.py └── baseconv_test.py ├── builtin_BuiltinVariable_call_setattr ├── .docs │ └── instructions.md ├── builtin.py └── builtin_test.py ├── checks_BaseModelAdminChecks__check_autocomplete_fields_item ├── .docs │ └── instructions.md ├── checks.py └── checks_test.py ├── checks_BaseModelAdminChecks__check_ordering_item ├── .docs │ └── instructions.md ├── checks.py └── checks_test.py ├── checks_BaseModelAdminChecks__check_raw_id_fields_item ├── .docs │ └── instructions.md ├── checks.py └── checks_test.py ├── checks_ModelAdminChecks__check_action_permission_methods ├── .docs │ └── instructions.md ├── checks.py └── checks_test.py ├── checks_ModelAdminChecks__check_inlines_item ├── .docs │ └── instructions.md ├── checks.py └── checks_test.py ├── checks_ModelAdminChecks__check_list_display_item ├── .docs │ └── instructions.md ├── checks.py └── checks_test.py ├── checks_ModelAdminChecks__check_list_editable_item ├── .docs │ └── instructions.md ├── checks.py └── checks_test.py ├── clustering_ops_KMeans__mini_batch_training_op ├── .docs │ └── instructions.md ├── clustering_ops.py └── clustering_ops_test.py ├── codeeditor_CodeEditor___get_brackets ├── .docs │ └── instructions.md ├── codeeditor.py └── codeeditor_test.py ├── common_methods_invocations_foreach_inputs_sample_func__sample_rightmost_arg ├── .docs │ └── instructions.md ├── common_methods_invocations.py └── common_methods_invocations_test.py ├── common_utils_TestCase_genSparseTensor ├── .docs │ └── instructions.md ├── common_utils.py └── common_utils_test.py ├── compile_utils_MetricsContainer__get_metric_object ├── .docs │ └── instructions.md ├── compile_utils.py └── compile_utils_test.py ├── concat__Concatenator__clean_keys_and_objs ├── .docs │ └── instructions.md ├── concat.py └── concat_test.py ├── config_AppConfig__path_from_module ├── .docs │ └── instructions.md ├── config.py └── config_test.py ├── config_ConfigCLI__get_settings_vars ├── .docs │ └── instructions.md ├── config.py └── config_test.py ├── config_NetworkConfig_parse ├── .docs │ └── instructions.md ├── config.py └── config_test.py ├── coordinator_HERETransitDataUpdateCoordinator__parse_transit_response ├── .docs │ └── instructions.md ├── coordinator.py └── coordinator_test.py ├── csrf_CsrfViewMiddleware__set_csrf_cookie ├── .docs │ └── instructions.md ├── csrf.py └── csrf_test.py ├── cuda_cpp_scheduling_CUDACPPScheduling__can_fuse_epilogue_impl ├── .docs │ └── instructions.md ├── cuda_cpp_scheduling.py └── cuda_cpp_scheduling_test.py ├── dataframeeditor_DataFrameView_next_index_name ├── .docs │ └── instructions.md ├── dataframeeditor.py └── dataframeeditor_test.py ├── dataloader_DataLoader__is_role ├── .docs │ └── instructions.md ├── dataloader.py └── dataloader_test.py ├── diffsettings_Command_output_hash ├── .docs │ └── instructions.md ├── diffsettings.py └── diffsettings_test.py ├── dim2_Dim2CompatTests_test_reductions_2d_axis0 ├── .docs │ └── instructions.md ├── dim2.py └── dim2_test.py ├── distribution_DistributionFiles_parse_distribution_file_SUSE ├── .docs │ └── instructions.md ├── distribution.py └── distribution_test.py ├── doc_DocCLI_display_plugin_list ├── .docs │ └── instructions.md ├── doc.py └── doc_test.py ├── doc_DocCLI_get_role_man_text ├── .docs │ └── instructions.md ├── doc.py └── doc_test.py ├── dumpdata_Command_add_arguments ├── .docs │ └── instructions.md ├── dumpdata.py └── dumpdata_test.py ├── feedgenerator_Atom1Feed_add_item_elements ├── .docs │ └── instructions.md ├── feedgenerator.py └── feedgenerator_test.py ├── figure_FigureBase_colorbar ├── .docs │ └── instructions.md ├── figure.py └── figure_test.py ├── finders_FileSystemFinder_check ├── .docs │ └── instructions.md ├── finders.py └── finders_test.py ├── functional_Functional__conform_to_reference_input ├── .docs │ └── instructions.md ├── functional.py └── functional_test.py ├── galaxy_GalaxyCLI_execute_list_collection ├── .docs │ └── instructions.md ├── galaxy.py └── galaxy_test.py ├── gateway_Gateway_get_and_delete_all_sms ├── .docs │ └── instructions.md ├── gateway.py └── gateway_test.py ├── generator_GenOpTestCase_out_variant_op_test_case_generator ├── .docs │ └── instructions.md ├── generator.py └── generator_test.py ├── generic_bsd_GenericBsdIfconfigNetwork_parse_inet_line ├── .docs │ └── instructions.md ├── generic_bsd.py └── generic_bsd_test.py ├── getitem_BaseGetitemTests_test_get ├── .docs │ └── instructions.md ├── getitem.py └── getitem_test.py ├── grad_scaler_GradScaler__unscale_grads_ ├── .docs │ └── instructions.md ├── grad_scaler.py └── grad_scaler_test.py ├── gradient_checker_GradientChecker__assertInferTensorChecks ├── .docs │ └── instructions.md ├── gradient_checker.py └── gradient_checker_test.py ├── graph_MigrationGraph_iterative_dfs ├── .docs │ └── instructions.md ├── graph.py └── graph_test.py ├── graph_drawer_FxGraphDrawer__stringify_tensor_meta ├── .docs │ └── instructions.md ├── graph_drawer.py └── graph_drawer_test.py ├── group_batch_fusion_GroupLinearFusion_fuse ├── .docs │ └── instructions.md ├── group_batch_fusion.py └── group_batch_fusion_test.py ├── grpc_debug_server_EventListenerBaseServicer__process_tensor_event_in_chunks ├── .docs │ └── instructions.md ├── grpc_debug_server.py └── grpc_debug_server_test.py ├── i18n_JavaScriptCatalog_get_paths ├── .docs │ └── instructions.md ├── i18n.py └── i18n_test.py ├── inspectdb_Command_get_field_type ├── .docs │ └── instructions.md ├── inspectdb.py └── inspectdb_test.py ├── inspectdb_Command_get_meta ├── .docs │ └── instructions.md ├── inspectdb.py └── inspectdb_test.py ├── inspectdb_Command_normalize_col_name ├── .docs │ └── instructions.md ├── inspectdb.py └── inspectdb_test.py ├── introspection_DatabaseIntrospection__get_column_collations ├── .docs │ └── instructions.md ├── introspection.py └── introspection_test.py ├── introspection_DatabaseIntrospection__parse_column_or_constraint_definition ├── .docs │ └── instructions.md ├── introspection.py └── introspection_test.py ├── kernel_SpyderKernel_get_fault_text ├── .docs │ └── instructions.md ├── kernel.py └── kernel_test.py ├── load_v1_in_v2__EagerSavedModelLoader__extract_signatures ├── .docs │ └── instructions.md ├── load_v1_in_v2.py └── load_v1_in_v2_test.py ├── main_widget_PylintWidget_parse_output ├── .docs │ └── instructions.md ├── main_widget.py └── main_widget_test.py ├── makemessages_Command_add_arguments ├── .docs │ └── instructions.md ├── makemessages.py └── makemessages_test.py ├── makemigrations_Command_add_arguments ├── .docs │ └── instructions.md ├── makemigrations.py └── makemigrations_test.py ├── methods_BaseMethodsTests_test_where_series ├── .docs │ └── instructions.md ├── methods.py └── methods_test.py ├── migrate_Command_add_arguments ├── .docs │ └── instructions.md ├── migrate.py └── migrate_test.py ├── ogrinspect_Command_add_arguments ├── .docs │ └── instructions.md ├── ogrinspect.py └── ogrinspect_test.py ├── onnxfunction_dispatcher_OnnxFunctionDispatcher__get_aten_name ├── .docs │ └── instructions.md ├── onnxfunction_dispatcher.py └── onnxfunction_dispatcher_test.py ├── operations_DatabaseOperations_bulk_insert_sql ├── .docs │ └── instructions.md ├── operations.py └── operations_test.py ├── operations_DatabaseOperations_check_expression_support ├── .docs │ └── instructions.md ├── operations.py └── operations_test.py ├── operations_DatabaseOperations_last_executed_query ├── .docs │ └── instructions.md ├── operations.py └── operations_test.py ├── operations_OracleOperations_convert_extent ├── .docs │ └── instructions.md ├── operations.py └── operations_test.py ├── options_ModelAdmin_message_user ├── .docs │ └── instructions.md ├── options.py └── options_test.py ├── patches__Curve__get_arrow_wedge ├── .docs │ └── instructions.md ├── patches.py └── patches_test.py ├── polar_RadialTick__determine_anchor ├── .docs │ └── instructions.md ├── polar.py └── polar_test.py ├── profile_analyzer_cli_ProfileAnalyzer__get_list_profile_lines ├── .docs │ └── instructions.md ├── profile_analyzer_cli.py └── profile_analyzer_cli_test.py ├── quiver_Barbs__make_barbs ├── .docs │ └── instructions.md ├── quiver.py └── quiver_test.py ├── reshaping_BaseReshapingTests_test_concat_mixed_dtypes ├── .docs │ └── instructions.md ├── reshaping.py └── reshaping_test.py ├── reshaping_BaseReshapingTests_test_unstack ├── .docs │ └── instructions.md ├── reshaping.py └── reshaping_test.py ├── schema_DatabaseSchemaEditor_quote_value ├── .docs │ └── instructions.md ├── schema.py └── schema_test.py ├── sharding_policies_MaxShardSizePolicy__add_partition ├── .docs │ └── instructions.md ├── sharding_policies.py └── sharding_policies_test.py ├── shell_Command_python ├── .docs │ └── instructions.md ├── shell.py └── shell_test.py ├── special_RunSQL__run_sql ├── .docs │ └── instructions.md ├── special.py └── special_test.py ├── split_cat_SplitCatSimplifier_get_transform_params ├── .docs │ └── instructions.md ├── split_cat.py └── split_cat_test.py ├── split_cat_SplitCatSimplifier_replace_cat ├── .docs │ └── instructions.md ├── split_cat.py └── split_cat_test.py ├── split_cat_SplitCatSimplifier_replace_split ├── .docs │ └── instructions.md ├── split_cat.py └── split_cat_test.py ├── symbolic_shapes_ShapeEnv_bind_symbols ├── .docs │ └── instructions.md ├── symbolic_shapes.py └── symbolic_shapes_test.py ├── text_CountVectorizer__limit_features ├── .docs │ └── instructions.md ├── text.py └── text_test.py ├── triton_TritonScheduling_define_kernel ├── .docs │ └── instructions.md ├── triton.py └── triton_test.py ├── triton_TritonScheduling_generate_node_schedule ├── .docs │ └── instructions.md ├── triton.py └── triton_test.py └── weather_NWSWeather__forecast ├── .docs └── instructions.md ├── weather.py └── weather_test.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /refactor-benchmark/analyzer_cli_DebugAnalyzer__make_source_table/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/analyzer_cli_DebugAnalyzer__make_source_table/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/analyzer_cli_DebugAnalyzer__make_source_table/analyzer_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/analyzer_cli_DebugAnalyzer__make_source_table/analyzer_cli.py -------------------------------------------------------------------------------- /refactor-benchmark/analyzer_cli_DebugAnalyzer__make_source_table/analyzer_cli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/analyzer_cli_DebugAnalyzer__make_source_table/analyzer_cli_test.py -------------------------------------------------------------------------------- /refactor-benchmark/autodetector_MigrationAutodetector__trim_to_apps/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/autodetector_MigrationAutodetector__trim_to_apps/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/autodetector_MigrationAutodetector__trim_to_apps/autodetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/autodetector_MigrationAutodetector__trim_to_apps/autodetector.py -------------------------------------------------------------------------------- /refactor-benchmark/autodetector_MigrationAutodetector__trim_to_apps/autodetector_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/autodetector_MigrationAutodetector__trim_to_apps/autodetector_test.py -------------------------------------------------------------------------------- /refactor-benchmark/autodetector_MigrationAutodetector_check_dependency/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/autodetector_MigrationAutodetector_check_dependency/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/autodetector_MigrationAutodetector_check_dependency/autodetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/autodetector_MigrationAutodetector_check_dependency/autodetector.py -------------------------------------------------------------------------------- /refactor-benchmark/autodetector_MigrationAutodetector_check_dependency/autodetector_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/autodetector_MigrationAutodetector_check_dependency/autodetector_test.py -------------------------------------------------------------------------------- /refactor-benchmark/autosave_AutosaveForPlugin_get_files_to_recover/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/autosave_AutosaveForPlugin_get_files_to_recover/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/autosave_AutosaveForPlugin_get_files_to_recover/autosave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/autosave_AutosaveForPlugin_get_files_to_recover/autosave.py -------------------------------------------------------------------------------- /refactor-benchmark/autosave_AutosaveForPlugin_get_files_to_recover/autosave_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/autosave_AutosaveForPlugin_get_files_to_recover/autosave_test.py -------------------------------------------------------------------------------- /refactor-benchmark/backends_ModelBackend_with_perm/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/backends_ModelBackend_with_perm/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/backends_ModelBackend_with_perm/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/backends_ModelBackend_with_perm/backends.py -------------------------------------------------------------------------------- /refactor-benchmark/backends_ModelBackend_with_perm/backends_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/backends_ModelBackend_with_perm/backends_test.py -------------------------------------------------------------------------------- /refactor-benchmark/base_BaseHandler_adapt_method_mode/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/base_BaseHandler_adapt_method_mode/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/base_BaseHandler_adapt_method_mode/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/base_BaseHandler_adapt_method_mode/base.py -------------------------------------------------------------------------------- /refactor-benchmark/base_BaseHandler_adapt_method_mode/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/base_BaseHandler_adapt_method_mode/base_test.py -------------------------------------------------------------------------------- /refactor-benchmark/base_BaseHandler_check_response/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/base_BaseHandler_check_response/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/base_BaseHandler_check_response/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/base_BaseHandler_check_response/base.py -------------------------------------------------------------------------------- /refactor-benchmark/base_BaseHandler_check_response/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/base_BaseHandler_check_response/base_test.py -------------------------------------------------------------------------------- /refactor-benchmark/baseconv_BaseConverter_convert/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/baseconv_BaseConverter_convert/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/baseconv_BaseConverter_convert/baseconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/baseconv_BaseConverter_convert/baseconv.py -------------------------------------------------------------------------------- /refactor-benchmark/baseconv_BaseConverter_convert/baseconv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/baseconv_BaseConverter_convert/baseconv_test.py -------------------------------------------------------------------------------- /refactor-benchmark/builtin_BuiltinVariable_call_setattr/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/builtin_BuiltinVariable_call_setattr/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/builtin_BuiltinVariable_call_setattr/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/builtin_BuiltinVariable_call_setattr/builtin.py -------------------------------------------------------------------------------- /refactor-benchmark/builtin_BuiltinVariable_call_setattr/builtin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/builtin_BuiltinVariable_call_setattr/builtin_test.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_BaseModelAdminChecks__check_autocomplete_fields_item/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_BaseModelAdminChecks__check_autocomplete_fields_item/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/checks_BaseModelAdminChecks__check_autocomplete_fields_item/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_BaseModelAdminChecks__check_autocomplete_fields_item/checks.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_BaseModelAdminChecks__check_autocomplete_fields_item/checks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_BaseModelAdminChecks__check_autocomplete_fields_item/checks_test.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_BaseModelAdminChecks__check_ordering_item/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_BaseModelAdminChecks__check_ordering_item/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/checks_BaseModelAdminChecks__check_ordering_item/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_BaseModelAdminChecks__check_ordering_item/checks.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_BaseModelAdminChecks__check_ordering_item/checks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_BaseModelAdminChecks__check_ordering_item/checks_test.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_BaseModelAdminChecks__check_raw_id_fields_item/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_BaseModelAdminChecks__check_raw_id_fields_item/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/checks_BaseModelAdminChecks__check_raw_id_fields_item/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_BaseModelAdminChecks__check_raw_id_fields_item/checks.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_BaseModelAdminChecks__check_raw_id_fields_item/checks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_BaseModelAdminChecks__check_raw_id_fields_item/checks_test.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_action_permission_methods/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_action_permission_methods/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_action_permission_methods/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_action_permission_methods/checks.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_action_permission_methods/checks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_action_permission_methods/checks_test.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_inlines_item/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_inlines_item/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_inlines_item/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_inlines_item/checks.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_inlines_item/checks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_inlines_item/checks_test.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_list_display_item/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_list_display_item/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_list_display_item/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_list_display_item/checks.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_list_display_item/checks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_list_display_item/checks_test.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_list_editable_item/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_list_editable_item/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_list_editable_item/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_list_editable_item/checks.py -------------------------------------------------------------------------------- /refactor-benchmark/checks_ModelAdminChecks__check_list_editable_item/checks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/checks_ModelAdminChecks__check_list_editable_item/checks_test.py -------------------------------------------------------------------------------- /refactor-benchmark/clustering_ops_KMeans__mini_batch_training_op/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/clustering_ops_KMeans__mini_batch_training_op/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/clustering_ops_KMeans__mini_batch_training_op/clustering_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/clustering_ops_KMeans__mini_batch_training_op/clustering_ops.py -------------------------------------------------------------------------------- /refactor-benchmark/clustering_ops_KMeans__mini_batch_training_op/clustering_ops_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/clustering_ops_KMeans__mini_batch_training_op/clustering_ops_test.py -------------------------------------------------------------------------------- /refactor-benchmark/codeeditor_CodeEditor___get_brackets/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/codeeditor_CodeEditor___get_brackets/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/codeeditor_CodeEditor___get_brackets/codeeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/codeeditor_CodeEditor___get_brackets/codeeditor.py -------------------------------------------------------------------------------- /refactor-benchmark/codeeditor_CodeEditor___get_brackets/codeeditor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/codeeditor_CodeEditor___get_brackets/codeeditor_test.py -------------------------------------------------------------------------------- /refactor-benchmark/common_methods_invocations_foreach_inputs_sample_func__sample_rightmost_arg/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/common_methods_invocations_foreach_inputs_sample_func__sample_rightmost_arg/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/common_methods_invocations_foreach_inputs_sample_func__sample_rightmost_arg/common_methods_invocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/common_methods_invocations_foreach_inputs_sample_func__sample_rightmost_arg/common_methods_invocations.py -------------------------------------------------------------------------------- /refactor-benchmark/common_methods_invocations_foreach_inputs_sample_func__sample_rightmost_arg/common_methods_invocations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/common_methods_invocations_foreach_inputs_sample_func__sample_rightmost_arg/common_methods_invocations_test.py -------------------------------------------------------------------------------- /refactor-benchmark/common_utils_TestCase_genSparseTensor/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/common_utils_TestCase_genSparseTensor/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/common_utils_TestCase_genSparseTensor/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/common_utils_TestCase_genSparseTensor/common_utils.py -------------------------------------------------------------------------------- /refactor-benchmark/common_utils_TestCase_genSparseTensor/common_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/common_utils_TestCase_genSparseTensor/common_utils_test.py -------------------------------------------------------------------------------- /refactor-benchmark/compile_utils_MetricsContainer__get_metric_object/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/compile_utils_MetricsContainer__get_metric_object/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/compile_utils_MetricsContainer__get_metric_object/compile_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/compile_utils_MetricsContainer__get_metric_object/compile_utils.py -------------------------------------------------------------------------------- /refactor-benchmark/compile_utils_MetricsContainer__get_metric_object/compile_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/compile_utils_MetricsContainer__get_metric_object/compile_utils_test.py -------------------------------------------------------------------------------- /refactor-benchmark/concat__Concatenator__clean_keys_and_objs/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/concat__Concatenator__clean_keys_and_objs/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/concat__Concatenator__clean_keys_and_objs/concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/concat__Concatenator__clean_keys_and_objs/concat.py -------------------------------------------------------------------------------- /refactor-benchmark/concat__Concatenator__clean_keys_and_objs/concat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/concat__Concatenator__clean_keys_and_objs/concat_test.py -------------------------------------------------------------------------------- /refactor-benchmark/config_AppConfig__path_from_module/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/config_AppConfig__path_from_module/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/config_AppConfig__path_from_module/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/config_AppConfig__path_from_module/config.py -------------------------------------------------------------------------------- /refactor-benchmark/config_AppConfig__path_from_module/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/config_AppConfig__path_from_module/config_test.py -------------------------------------------------------------------------------- /refactor-benchmark/config_ConfigCLI__get_settings_vars/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/config_ConfigCLI__get_settings_vars/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/config_ConfigCLI__get_settings_vars/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/config_ConfigCLI__get_settings_vars/config.py -------------------------------------------------------------------------------- /refactor-benchmark/config_ConfigCLI__get_settings_vars/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/config_ConfigCLI__get_settings_vars/config_test.py -------------------------------------------------------------------------------- /refactor-benchmark/config_NetworkConfig_parse/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/config_NetworkConfig_parse/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/config_NetworkConfig_parse/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/config_NetworkConfig_parse/config.py -------------------------------------------------------------------------------- /refactor-benchmark/config_NetworkConfig_parse/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/config_NetworkConfig_parse/config_test.py -------------------------------------------------------------------------------- /refactor-benchmark/coordinator_HERETransitDataUpdateCoordinator__parse_transit_response/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/coordinator_HERETransitDataUpdateCoordinator__parse_transit_response/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/coordinator_HERETransitDataUpdateCoordinator__parse_transit_response/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/coordinator_HERETransitDataUpdateCoordinator__parse_transit_response/coordinator.py -------------------------------------------------------------------------------- /refactor-benchmark/coordinator_HERETransitDataUpdateCoordinator__parse_transit_response/coordinator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/coordinator_HERETransitDataUpdateCoordinator__parse_transit_response/coordinator_test.py -------------------------------------------------------------------------------- /refactor-benchmark/csrf_CsrfViewMiddleware__set_csrf_cookie/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/csrf_CsrfViewMiddleware__set_csrf_cookie/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/csrf_CsrfViewMiddleware__set_csrf_cookie/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/csrf_CsrfViewMiddleware__set_csrf_cookie/csrf.py -------------------------------------------------------------------------------- /refactor-benchmark/csrf_CsrfViewMiddleware__set_csrf_cookie/csrf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/csrf_CsrfViewMiddleware__set_csrf_cookie/csrf_test.py -------------------------------------------------------------------------------- /refactor-benchmark/cuda_cpp_scheduling_CUDACPPScheduling__can_fuse_epilogue_impl/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/cuda_cpp_scheduling_CUDACPPScheduling__can_fuse_epilogue_impl/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/cuda_cpp_scheduling_CUDACPPScheduling__can_fuse_epilogue_impl/cuda_cpp_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/cuda_cpp_scheduling_CUDACPPScheduling__can_fuse_epilogue_impl/cuda_cpp_scheduling.py -------------------------------------------------------------------------------- /refactor-benchmark/cuda_cpp_scheduling_CUDACPPScheduling__can_fuse_epilogue_impl/cuda_cpp_scheduling_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/cuda_cpp_scheduling_CUDACPPScheduling__can_fuse_epilogue_impl/cuda_cpp_scheduling_test.py -------------------------------------------------------------------------------- /refactor-benchmark/dataframeeditor_DataFrameView_next_index_name/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dataframeeditor_DataFrameView_next_index_name/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/dataframeeditor_DataFrameView_next_index_name/dataframeeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dataframeeditor_DataFrameView_next_index_name/dataframeeditor.py -------------------------------------------------------------------------------- /refactor-benchmark/dataframeeditor_DataFrameView_next_index_name/dataframeeditor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dataframeeditor_DataFrameView_next_index_name/dataframeeditor_test.py -------------------------------------------------------------------------------- /refactor-benchmark/dataloader_DataLoader__is_role/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dataloader_DataLoader__is_role/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/dataloader_DataLoader__is_role/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dataloader_DataLoader__is_role/dataloader.py -------------------------------------------------------------------------------- /refactor-benchmark/dataloader_DataLoader__is_role/dataloader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dataloader_DataLoader__is_role/dataloader_test.py -------------------------------------------------------------------------------- /refactor-benchmark/diffsettings_Command_output_hash/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/diffsettings_Command_output_hash/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/diffsettings_Command_output_hash/diffsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/diffsettings_Command_output_hash/diffsettings.py -------------------------------------------------------------------------------- /refactor-benchmark/diffsettings_Command_output_hash/diffsettings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/diffsettings_Command_output_hash/diffsettings_test.py -------------------------------------------------------------------------------- /refactor-benchmark/dim2_Dim2CompatTests_test_reductions_2d_axis0/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dim2_Dim2CompatTests_test_reductions_2d_axis0/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/dim2_Dim2CompatTests_test_reductions_2d_axis0/dim2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dim2_Dim2CompatTests_test_reductions_2d_axis0/dim2.py -------------------------------------------------------------------------------- /refactor-benchmark/dim2_Dim2CompatTests_test_reductions_2d_axis0/dim2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dim2_Dim2CompatTests_test_reductions_2d_axis0/dim2_test.py -------------------------------------------------------------------------------- /refactor-benchmark/distribution_DistributionFiles_parse_distribution_file_SUSE/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/distribution_DistributionFiles_parse_distribution_file_SUSE/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/distribution_DistributionFiles_parse_distribution_file_SUSE/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/distribution_DistributionFiles_parse_distribution_file_SUSE/distribution.py -------------------------------------------------------------------------------- /refactor-benchmark/distribution_DistributionFiles_parse_distribution_file_SUSE/distribution_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/distribution_DistributionFiles_parse_distribution_file_SUSE/distribution_test.py -------------------------------------------------------------------------------- /refactor-benchmark/doc_DocCLI_display_plugin_list/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/doc_DocCLI_display_plugin_list/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/doc_DocCLI_display_plugin_list/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/doc_DocCLI_display_plugin_list/doc.py -------------------------------------------------------------------------------- /refactor-benchmark/doc_DocCLI_display_plugin_list/doc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/doc_DocCLI_display_plugin_list/doc_test.py -------------------------------------------------------------------------------- /refactor-benchmark/doc_DocCLI_get_role_man_text/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/doc_DocCLI_get_role_man_text/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/doc_DocCLI_get_role_man_text/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/doc_DocCLI_get_role_man_text/doc.py -------------------------------------------------------------------------------- /refactor-benchmark/doc_DocCLI_get_role_man_text/doc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/doc_DocCLI_get_role_man_text/doc_test.py -------------------------------------------------------------------------------- /refactor-benchmark/dumpdata_Command_add_arguments/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dumpdata_Command_add_arguments/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/dumpdata_Command_add_arguments/dumpdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dumpdata_Command_add_arguments/dumpdata.py -------------------------------------------------------------------------------- /refactor-benchmark/dumpdata_Command_add_arguments/dumpdata_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/dumpdata_Command_add_arguments/dumpdata_test.py -------------------------------------------------------------------------------- /refactor-benchmark/feedgenerator_Atom1Feed_add_item_elements/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/feedgenerator_Atom1Feed_add_item_elements/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/feedgenerator_Atom1Feed_add_item_elements/feedgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/feedgenerator_Atom1Feed_add_item_elements/feedgenerator.py -------------------------------------------------------------------------------- /refactor-benchmark/feedgenerator_Atom1Feed_add_item_elements/feedgenerator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/feedgenerator_Atom1Feed_add_item_elements/feedgenerator_test.py -------------------------------------------------------------------------------- /refactor-benchmark/figure_FigureBase_colorbar/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/figure_FigureBase_colorbar/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/figure_FigureBase_colorbar/figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/figure_FigureBase_colorbar/figure.py -------------------------------------------------------------------------------- /refactor-benchmark/figure_FigureBase_colorbar/figure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/figure_FigureBase_colorbar/figure_test.py -------------------------------------------------------------------------------- /refactor-benchmark/finders_FileSystemFinder_check/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/finders_FileSystemFinder_check/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/finders_FileSystemFinder_check/finders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/finders_FileSystemFinder_check/finders.py -------------------------------------------------------------------------------- /refactor-benchmark/finders_FileSystemFinder_check/finders_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/finders_FileSystemFinder_check/finders_test.py -------------------------------------------------------------------------------- /refactor-benchmark/functional_Functional__conform_to_reference_input/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/functional_Functional__conform_to_reference_input/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/functional_Functional__conform_to_reference_input/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/functional_Functional__conform_to_reference_input/functional.py -------------------------------------------------------------------------------- /refactor-benchmark/functional_Functional__conform_to_reference_input/functional_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/functional_Functional__conform_to_reference_input/functional_test.py -------------------------------------------------------------------------------- /refactor-benchmark/galaxy_GalaxyCLI_execute_list_collection/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/galaxy_GalaxyCLI_execute_list_collection/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/galaxy_GalaxyCLI_execute_list_collection/galaxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/galaxy_GalaxyCLI_execute_list_collection/galaxy.py -------------------------------------------------------------------------------- /refactor-benchmark/galaxy_GalaxyCLI_execute_list_collection/galaxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/galaxy_GalaxyCLI_execute_list_collection/galaxy_test.py -------------------------------------------------------------------------------- /refactor-benchmark/gateway_Gateway_get_and_delete_all_sms/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/gateway_Gateway_get_and_delete_all_sms/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/gateway_Gateway_get_and_delete_all_sms/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/gateway_Gateway_get_and_delete_all_sms/gateway.py -------------------------------------------------------------------------------- /refactor-benchmark/gateway_Gateway_get_and_delete_all_sms/gateway_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/gateway_Gateway_get_and_delete_all_sms/gateway_test.py -------------------------------------------------------------------------------- /refactor-benchmark/generator_GenOpTestCase_out_variant_op_test_case_generator/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/generator_GenOpTestCase_out_variant_op_test_case_generator/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/generator_GenOpTestCase_out_variant_op_test_case_generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/generator_GenOpTestCase_out_variant_op_test_case_generator/generator.py -------------------------------------------------------------------------------- /refactor-benchmark/generator_GenOpTestCase_out_variant_op_test_case_generator/generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/generator_GenOpTestCase_out_variant_op_test_case_generator/generator_test.py -------------------------------------------------------------------------------- /refactor-benchmark/generic_bsd_GenericBsdIfconfigNetwork_parse_inet_line/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/generic_bsd_GenericBsdIfconfigNetwork_parse_inet_line/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/generic_bsd_GenericBsdIfconfigNetwork_parse_inet_line/generic_bsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/generic_bsd_GenericBsdIfconfigNetwork_parse_inet_line/generic_bsd.py -------------------------------------------------------------------------------- /refactor-benchmark/generic_bsd_GenericBsdIfconfigNetwork_parse_inet_line/generic_bsd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/generic_bsd_GenericBsdIfconfigNetwork_parse_inet_line/generic_bsd_test.py -------------------------------------------------------------------------------- /refactor-benchmark/getitem_BaseGetitemTests_test_get/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/getitem_BaseGetitemTests_test_get/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/getitem_BaseGetitemTests_test_get/getitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/getitem_BaseGetitemTests_test_get/getitem.py -------------------------------------------------------------------------------- /refactor-benchmark/getitem_BaseGetitemTests_test_get/getitem_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/getitem_BaseGetitemTests_test_get/getitem_test.py -------------------------------------------------------------------------------- /refactor-benchmark/grad_scaler_GradScaler__unscale_grads_/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/grad_scaler_GradScaler__unscale_grads_/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/grad_scaler_GradScaler__unscale_grads_/grad_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/grad_scaler_GradScaler__unscale_grads_/grad_scaler.py -------------------------------------------------------------------------------- /refactor-benchmark/grad_scaler_GradScaler__unscale_grads_/grad_scaler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/grad_scaler_GradScaler__unscale_grads_/grad_scaler_test.py -------------------------------------------------------------------------------- /refactor-benchmark/gradient_checker_GradientChecker__assertInferTensorChecks/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/gradient_checker_GradientChecker__assertInferTensorChecks/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/gradient_checker_GradientChecker__assertInferTensorChecks/gradient_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/gradient_checker_GradientChecker__assertInferTensorChecks/gradient_checker.py -------------------------------------------------------------------------------- /refactor-benchmark/gradient_checker_GradientChecker__assertInferTensorChecks/gradient_checker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/gradient_checker_GradientChecker__assertInferTensorChecks/gradient_checker_test.py -------------------------------------------------------------------------------- /refactor-benchmark/graph_MigrationGraph_iterative_dfs/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/graph_MigrationGraph_iterative_dfs/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/graph_MigrationGraph_iterative_dfs/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/graph_MigrationGraph_iterative_dfs/graph.py -------------------------------------------------------------------------------- /refactor-benchmark/graph_MigrationGraph_iterative_dfs/graph_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/graph_MigrationGraph_iterative_dfs/graph_test.py -------------------------------------------------------------------------------- /refactor-benchmark/graph_drawer_FxGraphDrawer__stringify_tensor_meta/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/graph_drawer_FxGraphDrawer__stringify_tensor_meta/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/graph_drawer_FxGraphDrawer__stringify_tensor_meta/graph_drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/graph_drawer_FxGraphDrawer__stringify_tensor_meta/graph_drawer.py -------------------------------------------------------------------------------- /refactor-benchmark/graph_drawer_FxGraphDrawer__stringify_tensor_meta/graph_drawer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/graph_drawer_FxGraphDrawer__stringify_tensor_meta/graph_drawer_test.py -------------------------------------------------------------------------------- /refactor-benchmark/group_batch_fusion_GroupLinearFusion_fuse/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/group_batch_fusion_GroupLinearFusion_fuse/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/group_batch_fusion_GroupLinearFusion_fuse/group_batch_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/group_batch_fusion_GroupLinearFusion_fuse/group_batch_fusion.py -------------------------------------------------------------------------------- /refactor-benchmark/group_batch_fusion_GroupLinearFusion_fuse/group_batch_fusion_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/group_batch_fusion_GroupLinearFusion_fuse/group_batch_fusion_test.py -------------------------------------------------------------------------------- /refactor-benchmark/grpc_debug_server_EventListenerBaseServicer__process_tensor_event_in_chunks/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/grpc_debug_server_EventListenerBaseServicer__process_tensor_event_in_chunks/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/grpc_debug_server_EventListenerBaseServicer__process_tensor_event_in_chunks/grpc_debug_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/grpc_debug_server_EventListenerBaseServicer__process_tensor_event_in_chunks/grpc_debug_server.py -------------------------------------------------------------------------------- /refactor-benchmark/grpc_debug_server_EventListenerBaseServicer__process_tensor_event_in_chunks/grpc_debug_server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/grpc_debug_server_EventListenerBaseServicer__process_tensor_event_in_chunks/grpc_debug_server_test.py -------------------------------------------------------------------------------- /refactor-benchmark/i18n_JavaScriptCatalog_get_paths/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/i18n_JavaScriptCatalog_get_paths/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/i18n_JavaScriptCatalog_get_paths/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/i18n_JavaScriptCatalog_get_paths/i18n.py -------------------------------------------------------------------------------- /refactor-benchmark/i18n_JavaScriptCatalog_get_paths/i18n_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/i18n_JavaScriptCatalog_get_paths/i18n_test.py -------------------------------------------------------------------------------- /refactor-benchmark/inspectdb_Command_get_field_type/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/inspectdb_Command_get_field_type/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/inspectdb_Command_get_field_type/inspectdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/inspectdb_Command_get_field_type/inspectdb.py -------------------------------------------------------------------------------- /refactor-benchmark/inspectdb_Command_get_field_type/inspectdb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/inspectdb_Command_get_field_type/inspectdb_test.py -------------------------------------------------------------------------------- /refactor-benchmark/inspectdb_Command_get_meta/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/inspectdb_Command_get_meta/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/inspectdb_Command_get_meta/inspectdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/inspectdb_Command_get_meta/inspectdb.py -------------------------------------------------------------------------------- /refactor-benchmark/inspectdb_Command_get_meta/inspectdb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/inspectdb_Command_get_meta/inspectdb_test.py -------------------------------------------------------------------------------- /refactor-benchmark/inspectdb_Command_normalize_col_name/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/inspectdb_Command_normalize_col_name/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/inspectdb_Command_normalize_col_name/inspectdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/inspectdb_Command_normalize_col_name/inspectdb.py -------------------------------------------------------------------------------- /refactor-benchmark/inspectdb_Command_normalize_col_name/inspectdb_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/inspectdb_Command_normalize_col_name/inspectdb_test.py -------------------------------------------------------------------------------- /refactor-benchmark/introspection_DatabaseIntrospection__get_column_collations/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/introspection_DatabaseIntrospection__get_column_collations/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/introspection_DatabaseIntrospection__get_column_collations/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/introspection_DatabaseIntrospection__get_column_collations/introspection.py -------------------------------------------------------------------------------- /refactor-benchmark/introspection_DatabaseIntrospection__get_column_collations/introspection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/introspection_DatabaseIntrospection__get_column_collations/introspection_test.py -------------------------------------------------------------------------------- /refactor-benchmark/introspection_DatabaseIntrospection__parse_column_or_constraint_definition/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/introspection_DatabaseIntrospection__parse_column_or_constraint_definition/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/introspection_DatabaseIntrospection__parse_column_or_constraint_definition/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/introspection_DatabaseIntrospection__parse_column_or_constraint_definition/introspection.py -------------------------------------------------------------------------------- /refactor-benchmark/introspection_DatabaseIntrospection__parse_column_or_constraint_definition/introspection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/introspection_DatabaseIntrospection__parse_column_or_constraint_definition/introspection_test.py -------------------------------------------------------------------------------- /refactor-benchmark/kernel_SpyderKernel_get_fault_text/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/kernel_SpyderKernel_get_fault_text/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/kernel_SpyderKernel_get_fault_text/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/kernel_SpyderKernel_get_fault_text/kernel.py -------------------------------------------------------------------------------- /refactor-benchmark/kernel_SpyderKernel_get_fault_text/kernel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/kernel_SpyderKernel_get_fault_text/kernel_test.py -------------------------------------------------------------------------------- /refactor-benchmark/load_v1_in_v2__EagerSavedModelLoader__extract_signatures/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/load_v1_in_v2__EagerSavedModelLoader__extract_signatures/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/load_v1_in_v2__EagerSavedModelLoader__extract_signatures/load_v1_in_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/load_v1_in_v2__EagerSavedModelLoader__extract_signatures/load_v1_in_v2.py -------------------------------------------------------------------------------- /refactor-benchmark/load_v1_in_v2__EagerSavedModelLoader__extract_signatures/load_v1_in_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/load_v1_in_v2__EagerSavedModelLoader__extract_signatures/load_v1_in_v2_test.py -------------------------------------------------------------------------------- /refactor-benchmark/main_widget_PylintWidget_parse_output/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/main_widget_PylintWidget_parse_output/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/main_widget_PylintWidget_parse_output/main_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/main_widget_PylintWidget_parse_output/main_widget.py -------------------------------------------------------------------------------- /refactor-benchmark/main_widget_PylintWidget_parse_output/main_widget_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/main_widget_PylintWidget_parse_output/main_widget_test.py -------------------------------------------------------------------------------- /refactor-benchmark/makemessages_Command_add_arguments/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/makemessages_Command_add_arguments/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/makemessages_Command_add_arguments/makemessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/makemessages_Command_add_arguments/makemessages.py -------------------------------------------------------------------------------- /refactor-benchmark/makemessages_Command_add_arguments/makemessages_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/makemessages_Command_add_arguments/makemessages_test.py -------------------------------------------------------------------------------- /refactor-benchmark/makemigrations_Command_add_arguments/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/makemigrations_Command_add_arguments/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/makemigrations_Command_add_arguments/makemigrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/makemigrations_Command_add_arguments/makemigrations.py -------------------------------------------------------------------------------- /refactor-benchmark/makemigrations_Command_add_arguments/makemigrations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/makemigrations_Command_add_arguments/makemigrations_test.py -------------------------------------------------------------------------------- /refactor-benchmark/methods_BaseMethodsTests_test_where_series/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/methods_BaseMethodsTests_test_where_series/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/methods_BaseMethodsTests_test_where_series/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/methods_BaseMethodsTests_test_where_series/methods.py -------------------------------------------------------------------------------- /refactor-benchmark/methods_BaseMethodsTests_test_where_series/methods_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/methods_BaseMethodsTests_test_where_series/methods_test.py -------------------------------------------------------------------------------- /refactor-benchmark/migrate_Command_add_arguments/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/migrate_Command_add_arguments/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/migrate_Command_add_arguments/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/migrate_Command_add_arguments/migrate.py -------------------------------------------------------------------------------- /refactor-benchmark/migrate_Command_add_arguments/migrate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/migrate_Command_add_arguments/migrate_test.py -------------------------------------------------------------------------------- /refactor-benchmark/ogrinspect_Command_add_arguments/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/ogrinspect_Command_add_arguments/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/ogrinspect_Command_add_arguments/ogrinspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/ogrinspect_Command_add_arguments/ogrinspect.py -------------------------------------------------------------------------------- /refactor-benchmark/ogrinspect_Command_add_arguments/ogrinspect_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/ogrinspect_Command_add_arguments/ogrinspect_test.py -------------------------------------------------------------------------------- /refactor-benchmark/onnxfunction_dispatcher_OnnxFunctionDispatcher__get_aten_name/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/onnxfunction_dispatcher_OnnxFunctionDispatcher__get_aten_name/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/onnxfunction_dispatcher_OnnxFunctionDispatcher__get_aten_name/onnxfunction_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/onnxfunction_dispatcher_OnnxFunctionDispatcher__get_aten_name/onnxfunction_dispatcher.py -------------------------------------------------------------------------------- /refactor-benchmark/onnxfunction_dispatcher_OnnxFunctionDispatcher__get_aten_name/onnxfunction_dispatcher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/onnxfunction_dispatcher_OnnxFunctionDispatcher__get_aten_name/onnxfunction_dispatcher_test.py -------------------------------------------------------------------------------- /refactor-benchmark/operations_DatabaseOperations_bulk_insert_sql/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_DatabaseOperations_bulk_insert_sql/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/operations_DatabaseOperations_bulk_insert_sql/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_DatabaseOperations_bulk_insert_sql/operations.py -------------------------------------------------------------------------------- /refactor-benchmark/operations_DatabaseOperations_bulk_insert_sql/operations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_DatabaseOperations_bulk_insert_sql/operations_test.py -------------------------------------------------------------------------------- /refactor-benchmark/operations_DatabaseOperations_check_expression_support/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_DatabaseOperations_check_expression_support/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/operations_DatabaseOperations_check_expression_support/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_DatabaseOperations_check_expression_support/operations.py -------------------------------------------------------------------------------- /refactor-benchmark/operations_DatabaseOperations_check_expression_support/operations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_DatabaseOperations_check_expression_support/operations_test.py -------------------------------------------------------------------------------- /refactor-benchmark/operations_DatabaseOperations_last_executed_query/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_DatabaseOperations_last_executed_query/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/operations_DatabaseOperations_last_executed_query/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_DatabaseOperations_last_executed_query/operations.py -------------------------------------------------------------------------------- /refactor-benchmark/operations_DatabaseOperations_last_executed_query/operations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_DatabaseOperations_last_executed_query/operations_test.py -------------------------------------------------------------------------------- /refactor-benchmark/operations_OracleOperations_convert_extent/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_OracleOperations_convert_extent/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/operations_OracleOperations_convert_extent/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_OracleOperations_convert_extent/operations.py -------------------------------------------------------------------------------- /refactor-benchmark/operations_OracleOperations_convert_extent/operations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/operations_OracleOperations_convert_extent/operations_test.py -------------------------------------------------------------------------------- /refactor-benchmark/options_ModelAdmin_message_user/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/options_ModelAdmin_message_user/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/options_ModelAdmin_message_user/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/options_ModelAdmin_message_user/options.py -------------------------------------------------------------------------------- /refactor-benchmark/options_ModelAdmin_message_user/options_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/options_ModelAdmin_message_user/options_test.py -------------------------------------------------------------------------------- /refactor-benchmark/patches__Curve__get_arrow_wedge/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/patches__Curve__get_arrow_wedge/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/patches__Curve__get_arrow_wedge/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/patches__Curve__get_arrow_wedge/patches.py -------------------------------------------------------------------------------- /refactor-benchmark/patches__Curve__get_arrow_wedge/patches_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/patches__Curve__get_arrow_wedge/patches_test.py -------------------------------------------------------------------------------- /refactor-benchmark/polar_RadialTick__determine_anchor/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/polar_RadialTick__determine_anchor/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/polar_RadialTick__determine_anchor/polar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/polar_RadialTick__determine_anchor/polar.py -------------------------------------------------------------------------------- /refactor-benchmark/polar_RadialTick__determine_anchor/polar_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/polar_RadialTick__determine_anchor/polar_test.py -------------------------------------------------------------------------------- /refactor-benchmark/profile_analyzer_cli_ProfileAnalyzer__get_list_profile_lines/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/profile_analyzer_cli_ProfileAnalyzer__get_list_profile_lines/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/profile_analyzer_cli_ProfileAnalyzer__get_list_profile_lines/profile_analyzer_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/profile_analyzer_cli_ProfileAnalyzer__get_list_profile_lines/profile_analyzer_cli.py -------------------------------------------------------------------------------- /refactor-benchmark/profile_analyzer_cli_ProfileAnalyzer__get_list_profile_lines/profile_analyzer_cli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/profile_analyzer_cli_ProfileAnalyzer__get_list_profile_lines/profile_analyzer_cli_test.py -------------------------------------------------------------------------------- /refactor-benchmark/quiver_Barbs__make_barbs/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/quiver_Barbs__make_barbs/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/quiver_Barbs__make_barbs/quiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/quiver_Barbs__make_barbs/quiver.py -------------------------------------------------------------------------------- /refactor-benchmark/quiver_Barbs__make_barbs/quiver_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/quiver_Barbs__make_barbs/quiver_test.py -------------------------------------------------------------------------------- /refactor-benchmark/reshaping_BaseReshapingTests_test_concat_mixed_dtypes/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/reshaping_BaseReshapingTests_test_concat_mixed_dtypes/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/reshaping_BaseReshapingTests_test_concat_mixed_dtypes/reshaping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/reshaping_BaseReshapingTests_test_concat_mixed_dtypes/reshaping.py -------------------------------------------------------------------------------- /refactor-benchmark/reshaping_BaseReshapingTests_test_concat_mixed_dtypes/reshaping_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/reshaping_BaseReshapingTests_test_concat_mixed_dtypes/reshaping_test.py -------------------------------------------------------------------------------- /refactor-benchmark/reshaping_BaseReshapingTests_test_unstack/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/reshaping_BaseReshapingTests_test_unstack/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/reshaping_BaseReshapingTests_test_unstack/reshaping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/reshaping_BaseReshapingTests_test_unstack/reshaping.py -------------------------------------------------------------------------------- /refactor-benchmark/reshaping_BaseReshapingTests_test_unstack/reshaping_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/reshaping_BaseReshapingTests_test_unstack/reshaping_test.py -------------------------------------------------------------------------------- /refactor-benchmark/schema_DatabaseSchemaEditor_quote_value/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/schema_DatabaseSchemaEditor_quote_value/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/schema_DatabaseSchemaEditor_quote_value/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/schema_DatabaseSchemaEditor_quote_value/schema.py -------------------------------------------------------------------------------- /refactor-benchmark/schema_DatabaseSchemaEditor_quote_value/schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/schema_DatabaseSchemaEditor_quote_value/schema_test.py -------------------------------------------------------------------------------- /refactor-benchmark/sharding_policies_MaxShardSizePolicy__add_partition/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/sharding_policies_MaxShardSizePolicy__add_partition/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/sharding_policies_MaxShardSizePolicy__add_partition/sharding_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/sharding_policies_MaxShardSizePolicy__add_partition/sharding_policies.py -------------------------------------------------------------------------------- /refactor-benchmark/sharding_policies_MaxShardSizePolicy__add_partition/sharding_policies_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/sharding_policies_MaxShardSizePolicy__add_partition/sharding_policies_test.py -------------------------------------------------------------------------------- /refactor-benchmark/shell_Command_python/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/shell_Command_python/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/shell_Command_python/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/shell_Command_python/shell.py -------------------------------------------------------------------------------- /refactor-benchmark/shell_Command_python/shell_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/shell_Command_python/shell_test.py -------------------------------------------------------------------------------- /refactor-benchmark/special_RunSQL__run_sql/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/special_RunSQL__run_sql/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/special_RunSQL__run_sql/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/special_RunSQL__run_sql/special.py -------------------------------------------------------------------------------- /refactor-benchmark/special_RunSQL__run_sql/special_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/special_RunSQL__run_sql/special_test.py -------------------------------------------------------------------------------- /refactor-benchmark/split_cat_SplitCatSimplifier_get_transform_params/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/split_cat_SplitCatSimplifier_get_transform_params/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/split_cat_SplitCatSimplifier_get_transform_params/split_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/split_cat_SplitCatSimplifier_get_transform_params/split_cat.py -------------------------------------------------------------------------------- /refactor-benchmark/split_cat_SplitCatSimplifier_get_transform_params/split_cat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/split_cat_SplitCatSimplifier_get_transform_params/split_cat_test.py -------------------------------------------------------------------------------- /refactor-benchmark/split_cat_SplitCatSimplifier_replace_cat/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/split_cat_SplitCatSimplifier_replace_cat/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/split_cat_SplitCatSimplifier_replace_cat/split_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/split_cat_SplitCatSimplifier_replace_cat/split_cat.py -------------------------------------------------------------------------------- /refactor-benchmark/split_cat_SplitCatSimplifier_replace_cat/split_cat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/split_cat_SplitCatSimplifier_replace_cat/split_cat_test.py -------------------------------------------------------------------------------- /refactor-benchmark/split_cat_SplitCatSimplifier_replace_split/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/split_cat_SplitCatSimplifier_replace_split/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/split_cat_SplitCatSimplifier_replace_split/split_cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/split_cat_SplitCatSimplifier_replace_split/split_cat.py -------------------------------------------------------------------------------- /refactor-benchmark/split_cat_SplitCatSimplifier_replace_split/split_cat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/split_cat_SplitCatSimplifier_replace_split/split_cat_test.py -------------------------------------------------------------------------------- /refactor-benchmark/symbolic_shapes_ShapeEnv_bind_symbols/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/symbolic_shapes_ShapeEnv_bind_symbols/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/symbolic_shapes_ShapeEnv_bind_symbols/symbolic_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/symbolic_shapes_ShapeEnv_bind_symbols/symbolic_shapes.py -------------------------------------------------------------------------------- /refactor-benchmark/symbolic_shapes_ShapeEnv_bind_symbols/symbolic_shapes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/symbolic_shapes_ShapeEnv_bind_symbols/symbolic_shapes_test.py -------------------------------------------------------------------------------- /refactor-benchmark/text_CountVectorizer__limit_features/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/text_CountVectorizer__limit_features/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/text_CountVectorizer__limit_features/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/text_CountVectorizer__limit_features/text.py -------------------------------------------------------------------------------- /refactor-benchmark/text_CountVectorizer__limit_features/text_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/text_CountVectorizer__limit_features/text_test.py -------------------------------------------------------------------------------- /refactor-benchmark/triton_TritonScheduling_define_kernel/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/triton_TritonScheduling_define_kernel/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/triton_TritonScheduling_define_kernel/triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/triton_TritonScheduling_define_kernel/triton.py -------------------------------------------------------------------------------- /refactor-benchmark/triton_TritonScheduling_define_kernel/triton_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/triton_TritonScheduling_define_kernel/triton_test.py -------------------------------------------------------------------------------- /refactor-benchmark/triton_TritonScheduling_generate_node_schedule/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/triton_TritonScheduling_generate_node_schedule/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/triton_TritonScheduling_generate_node_schedule/triton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/triton_TritonScheduling_generate_node_schedule/triton.py -------------------------------------------------------------------------------- /refactor-benchmark/triton_TritonScheduling_generate_node_schedule/triton_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/triton_TritonScheduling_generate_node_schedule/triton_test.py -------------------------------------------------------------------------------- /refactor-benchmark/weather_NWSWeather__forecast/.docs/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/weather_NWSWeather__forecast/.docs/instructions.md -------------------------------------------------------------------------------- /refactor-benchmark/weather_NWSWeather__forecast/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/weather_NWSWeather__forecast/weather.py -------------------------------------------------------------------------------- /refactor-benchmark/weather_NWSWeather__forecast/weather_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aider-AI/refactor-benchmark/HEAD/refactor-benchmark/weather_NWSWeather__forecast/weather_test.py --------------------------------------------------------------------------------