├── .github ├── instructions │ └── sidebar-node-logic.instructions.md └── workflows │ ├── claude.yml │ ├── python-test.yml │ └── release.yml ├── .gitignore ├── CLAUDE.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── configs ├── README.md ├── default_config.yaml ├── early_stopping_example.yaml ├── island_config_example.yaml └── island_examples.yaml ├── examples ├── README.md ├── algotune │ ├── README.md │ ├── affine_transform_2d │ │ ├── best_program.py │ │ ├── best_program_info.json │ │ ├── config.yaml │ │ ├── evaluator.py │ │ └── initial_program.py │ ├── convolve2d_full_fill │ │ ├── best_program.py │ │ ├── best_program_info.json │ │ ├── config.yaml │ │ ├── evaluator.py │ │ └── initial_program.py │ ├── create_task.py │ ├── eigenvectors_complex │ │ ├── best_program.py │ │ ├── best_program_info.json │ │ ├── config.yaml │ │ ├── evaluator.py │ │ └── initial_program.py │ ├── fft_cmplx_scipy_fftpack │ │ ├── best_program.py │ │ ├── best_program_info.json │ │ ├── config.yaml │ │ ├── evaluator.py │ │ └── initial_program.py │ ├── fft_convolution │ │ ├── best_program.py │ │ ├── best_program_info.json │ │ ├── config.yaml │ │ ├── evaluator.py │ │ └── initial_program.py │ ├── generate_all_tasks.py │ ├── lu_factorization │ │ ├── best_program.py │ │ ├── best_program_info.json │ │ ├── config.yaml │ │ ├── evaluator.py │ │ └── initial_program.py │ ├── polynomial_real │ │ ├── best_program.py │ │ ├── best_program_info.json │ │ ├── config.yaml │ │ ├── evaluator.py │ │ └── initial_program.py │ ├── psd_cone_projection │ │ ├── best_program.py │ │ ├── best_program_info.json │ │ ├── config.yaml │ │ ├── evaluator.py │ │ └── initial_program.py │ ├── requirements.txt │ ├── run_benchmark.py │ └── task_adapter.py ├── alphaevolve_math_problems │ ├── README.md │ ├── circle_packing_rect │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt │ ├── erdos_min_overlap │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt │ ├── first_autocorr_ineq │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt │ ├── heilbronn_convex │ │ ├── 13 │ │ │ ├── config.yaml │ │ │ ├── evaluator.py │ │ │ ├── initial_program.py │ │ │ └── requirements.txt │ │ └── 14 │ │ │ ├── config.yaml │ │ │ ├── evaluator.py │ │ │ ├── initial_program.py │ │ │ └── requirements.txt │ ├── heilbronn_triangle │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt │ ├── hexagon_packing │ │ ├── 11 │ │ │ ├── config.yaml │ │ │ ├── evaluator.py │ │ │ ├── initial_program.py │ │ │ └── requirements.txt │ │ └── 12 │ │ │ ├── config.yaml │ │ │ ├── evaluator.py │ │ │ ├── initial_program.py │ │ │ └── requirements.txt │ ├── kissing_number │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt │ ├── matmul │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt │ ├── minimizing_max_min_dist │ │ ├── 2 │ │ │ ├── config.yaml │ │ │ ├── evaluator.py │ │ │ ├── initial_program.py │ │ │ └── requirements.txt │ │ └── 3 │ │ │ ├── config.yaml │ │ │ ├── evaluator.py │ │ │ ├── initial_program.py │ │ │ └── requirements.txt │ ├── second_autocorr_ineq │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt │ ├── sums_diffs_finite_sets │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt │ ├── third_autocorr_ineq │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt │ └── uncertainty_ineq │ │ ├── config.yaml │ │ ├── evaluator.py │ │ ├── initial_program.py │ │ └── requirements.txt ├── attention_optimization │ ├── README.md │ ├── config.yaml │ ├── configs │ │ └── failing_config.yaml │ ├── evaluator.py │ ├── initial_program.py │ ├── legacy │ │ └── prev_sim__works_evaluator.py │ ├── mlir │ │ ├── attn.mlir │ │ ├── attn_template.mlir │ │ ├── baseline_attention.mlir │ │ ├── baseline_attention_v0.mlir │ │ ├── export_mlir.mlir │ │ ├── self_attention_torch_mlir_gen.mlir │ │ ├── self_attention_with_consts_torch_dialect.mlir │ │ ├── self_attn_with_consts_linalg_dialect.mlir │ │ └── self_attn_with_consts_linalg_dialect.mlir.backup │ ├── scripts │ │ ├── debug_real_execution.py │ │ ├── fix_tensor_shapes.py │ │ ├── mlir_lowering_pipeline.py │ │ ├── mlir_syntax_test.py │ │ └── to_real_mlir.sh │ └── tests │ │ ├── test_evaluator.py │ │ └── test_results.py ├── circle_packing │ ├── README.md │ ├── best_program.py │ ├── best_program_info.json │ ├── circle_packing_1.png │ ├── circle_packing_10.png │ ├── circle_packing_190.png │ ├── circle_packing_460.png │ ├── config_phase_1.yaml │ ├── config_phase_2.yaml │ ├── evaluator.py │ ├── initial_program.py │ └── requirements.txt ├── circle_packing_with_artifacts │ ├── README.md │ ├── config_phase_1.yaml │ ├── config_phase_2.yaml │ ├── evaluator.py │ ├── initial_program.py │ └── requirements.txt ├── function_minimization │ ├── README.md │ ├── config.yaml │ ├── evaluator.py │ ├── initial_program.py │ └── requirements.txt ├── llm_prompt_optimization │ ├── README.md │ ├── config.yaml │ ├── config_qwen3_baseline.yaml │ ├── config_qwen3_evolution.yaml │ ├── dataset_settings.yaml │ ├── emotion_prompt.txt │ ├── emotion_prompt_dataset.yaml │ ├── evaluate_prompts.py │ ├── evaluation_results_baseline_20250809_070942.json │ ├── evaluation_results_evolved_20250809_103002.json │ ├── evaluator.py │ ├── gsm8k_prompt.txt │ ├── gsm8k_prompt_dataset.yaml │ ├── hotpotqa_prompt.txt │ ├── hotpotqa_prompt_dataset.yaml │ ├── hover_prompt.txt │ ├── hover_prompt_dataset.yaml │ ├── ifeval_prompt.txt │ ├── ifeval_prompt_dataset.yaml │ ├── initial_prompt.txt │ ├── initial_prompt_dataset.yaml │ ├── requirements.txt │ ├── run_evolution.sh │ └── templates │ │ ├── evaluation.txt │ │ ├── evaluator_system_message.txt │ │ └── full_rewrite_user.txt ├── lm_eval │ ├── README.md │ ├── config.yml │ ├── evaluator_stub.py │ ├── initial_content_stub.txt │ ├── lm-eval.py │ ├── prompts │ │ ├── diff_user.txt │ │ ├── evaluation.txt │ │ ├── evolution_history.txt │ │ ├── full_rewrite_user.txt │ │ ├── previous_attempt.txt │ │ └── top_program.txt │ └── requirements.txt ├── mlx_metal_kernel_opt │ ├── README.md │ ├── best_program.py │ ├── best_program_info.json │ ├── config.yaml │ ├── evaluator.py │ ├── initial_program.py │ ├── openevolve_comparison_results_1750305870.json │ ├── openevolve_comparison_summary_1750305870.csv │ ├── quick_benchmark_test.py │ ├── quick_demo.py │ ├── qwen3_benchmark_suite.py │ ├── requirements.txt │ ├── run_benchmarks.py │ └── test_optimized_attention.py ├── online_judge_programming │ ├── README.md │ ├── config.yaml │ ├── evaluator.py │ ├── example.kattisrc │ ├── initial_program.py │ ├── requirements.txt │ └── submit.py ├── r_robust_regression │ ├── README.md │ ├── config.yaml │ ├── evaluator.py │ ├── initial_program.r │ └── requirements.txt ├── rust_adaptive_sort │ ├── README.md │ ├── config.yaml │ ├── evaluator.py │ ├── initial_program.rs │ ├── requirements.txt │ └── sort_test │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── signal_processing │ ├── README.md │ ├── config.yaml │ ├── evaluator.py │ ├── initial_program.py │ └── requirements.txt ├── sldbench │ ├── README.md │ ├── configs │ │ ├── data_constrained_scaling_law.yaml │ │ ├── domain_mixture_scaling_law.yaml │ │ ├── easy_question_scaling_law.yaml │ │ ├── lr_bsz_scaling_law.yaml │ │ ├── moe_scaling_law.yaml │ │ ├── parallel_scaling_law.yaml │ │ ├── sft_scaling_law.yaml │ │ └── vocab_scaling_law.yaml │ ├── data_loader.py │ ├── evaluator.py │ ├── init_program.py │ └── run.sh ├── symbolic_regression │ ├── README.md │ ├── bench │ │ ├── dataclasses.py │ │ └── datamodules.py │ ├── data_api.py │ ├── eval.py │ └── scripts.sh └── web_scraper_optillm │ ├── README.md │ ├── config.yaml │ ├── evaluator.py │ ├── initial_program.py │ └── requirements.txt ├── openevolve-architecture.png ├── openevolve-logo.png ├── openevolve-run.py ├── openevolve-visualizer.png ├── openevolve ├── __init__.py ├── _version.py ├── api.py ├── cli.py ├── config.py ├── controller.py ├── database.py ├── embedding.py ├── evaluation_result.py ├── evaluator.py ├── evolution_trace.py ├── iteration.py ├── llm │ ├── __init__.py │ ├── base.py │ ├── ensemble.py │ └── openai.py ├── novelty_judge.py ├── process_parallel.py ├── prompt │ ├── __init__.py │ ├── sampler.py │ └── templates.py ├── prompts │ └── defaults │ │ ├── diff_user.txt │ │ ├── evaluation.txt │ │ ├── evaluator_system_message.txt │ │ ├── evolution_history.txt │ │ ├── fragments.json │ │ ├── full_rewrite_user.txt │ │ ├── inspiration_program.txt │ │ ├── inspirations_section.txt │ │ ├── previous_attempt.txt │ │ ├── system_message.txt │ │ └── top_program.txt ├── test_regional_endpoint.py └── utils │ ├── __init__.py │ ├── async_utils.py │ ├── code_utils.py │ ├── format_utils.py │ ├── metrics_utils.py │ └── trace_export_utils.py ├── pyproject.toml ├── scripts ├── requirements.txt ├── static │ ├── css │ │ └── main.css │ └── js │ │ ├── graph.js │ │ ├── list.js │ │ ├── main.js │ │ ├── mainUI.js │ │ ├── performance.js │ │ ├── sidebar.js │ │ └── state.js ├── templates │ ├── index.html │ └── program_page.html └── visualizer.py ├── setup.py └── tests ├── integration ├── README.md ├── __init__.py ├── conftest.py ├── test_checkpoint_with_llm.py ├── test_evolution_pipeline.py ├── test_library_api.py ├── test_migration_with_llm.py ├── test_migration_with_llm.py.bak └── test_smoke.py ├── test_api.py ├── test_api_key_from_env.py ├── test_artifacts.py ├── test_artifacts_integration.py ├── test_cascade_validation.py ├── test_checkpoint_resume.py ├── test_cli_model_override.py ├── test_code_utils.py ├── test_concurrent_island_access.py ├── test_database.py ├── test_database_cleanup.py ├── test_evaluator_timeout.py ├── test_evolution_trace.py ├── test_feature_stats_persistence.py ├── test_file_extension_preservation.py ├── test_grid_stability.py ├── test_island_isolation.py ├── test_island_map_elites.py ├── test_island_migration.py ├── test_island_parent_consistency.py ├── test_island_tracking.py ├── test_iteration_counting.py ├── test_llm_ensemble.py ├── test_map_elites_features.py ├── test_migration_no_duplicates.py ├── test_model_parameter_demo.py ├── test_novelty_asyncio_issue.py ├── test_openai_model_detection.py ├── test_process_parallel.py ├── test_process_parallel_fix.py ├── test_prompt_sampler.py ├── test_prompt_sampler_comprehensive.py ├── test_reasoning_effort_config.py ├── test_regional_endpoint.py ├── test_sample_from_island_ratios.py ├── test_utils.py └── test_valid_configs.py /.github/instructions/sidebar-node-logic.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/.github/instructions/sidebar-node-logic.instructions.md -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/README.md -------------------------------------------------------------------------------- /configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/configs/README.md -------------------------------------------------------------------------------- /configs/default_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/configs/default_config.yaml -------------------------------------------------------------------------------- /configs/early_stopping_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/configs/early_stopping_example.yaml -------------------------------------------------------------------------------- /configs/island_config_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/configs/island_config_example.yaml -------------------------------------------------------------------------------- /configs/island_examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/configs/island_examples.yaml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/algotune/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/README.md -------------------------------------------------------------------------------- /examples/algotune/affine_transform_2d/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/affine_transform_2d/best_program.py -------------------------------------------------------------------------------- /examples/algotune/affine_transform_2d/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/affine_transform_2d/best_program_info.json -------------------------------------------------------------------------------- /examples/algotune/affine_transform_2d/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/affine_transform_2d/config.yaml -------------------------------------------------------------------------------- /examples/algotune/affine_transform_2d/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/affine_transform_2d/evaluator.py -------------------------------------------------------------------------------- /examples/algotune/affine_transform_2d/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/affine_transform_2d/initial_program.py -------------------------------------------------------------------------------- /examples/algotune/convolve2d_full_fill/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/convolve2d_full_fill/best_program.py -------------------------------------------------------------------------------- /examples/algotune/convolve2d_full_fill/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/convolve2d_full_fill/best_program_info.json -------------------------------------------------------------------------------- /examples/algotune/convolve2d_full_fill/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/convolve2d_full_fill/config.yaml -------------------------------------------------------------------------------- /examples/algotune/convolve2d_full_fill/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/convolve2d_full_fill/evaluator.py -------------------------------------------------------------------------------- /examples/algotune/convolve2d_full_fill/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/convolve2d_full_fill/initial_program.py -------------------------------------------------------------------------------- /examples/algotune/create_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/create_task.py -------------------------------------------------------------------------------- /examples/algotune/eigenvectors_complex/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/eigenvectors_complex/best_program.py -------------------------------------------------------------------------------- /examples/algotune/eigenvectors_complex/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/eigenvectors_complex/best_program_info.json -------------------------------------------------------------------------------- /examples/algotune/eigenvectors_complex/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/eigenvectors_complex/config.yaml -------------------------------------------------------------------------------- /examples/algotune/eigenvectors_complex/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/eigenvectors_complex/evaluator.py -------------------------------------------------------------------------------- /examples/algotune/eigenvectors_complex/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/eigenvectors_complex/initial_program.py -------------------------------------------------------------------------------- /examples/algotune/fft_cmplx_scipy_fftpack/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_cmplx_scipy_fftpack/best_program.py -------------------------------------------------------------------------------- /examples/algotune/fft_cmplx_scipy_fftpack/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_cmplx_scipy_fftpack/best_program_info.json -------------------------------------------------------------------------------- /examples/algotune/fft_cmplx_scipy_fftpack/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_cmplx_scipy_fftpack/config.yaml -------------------------------------------------------------------------------- /examples/algotune/fft_cmplx_scipy_fftpack/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_cmplx_scipy_fftpack/evaluator.py -------------------------------------------------------------------------------- /examples/algotune/fft_cmplx_scipy_fftpack/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_cmplx_scipy_fftpack/initial_program.py -------------------------------------------------------------------------------- /examples/algotune/fft_convolution/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_convolution/best_program.py -------------------------------------------------------------------------------- /examples/algotune/fft_convolution/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_convolution/best_program_info.json -------------------------------------------------------------------------------- /examples/algotune/fft_convolution/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_convolution/config.yaml -------------------------------------------------------------------------------- /examples/algotune/fft_convolution/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_convolution/evaluator.py -------------------------------------------------------------------------------- /examples/algotune/fft_convolution/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/fft_convolution/initial_program.py -------------------------------------------------------------------------------- /examples/algotune/generate_all_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/generate_all_tasks.py -------------------------------------------------------------------------------- /examples/algotune/lu_factorization/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/lu_factorization/best_program.py -------------------------------------------------------------------------------- /examples/algotune/lu_factorization/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/lu_factorization/best_program_info.json -------------------------------------------------------------------------------- /examples/algotune/lu_factorization/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/lu_factorization/config.yaml -------------------------------------------------------------------------------- /examples/algotune/lu_factorization/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/lu_factorization/evaluator.py -------------------------------------------------------------------------------- /examples/algotune/lu_factorization/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/lu_factorization/initial_program.py -------------------------------------------------------------------------------- /examples/algotune/polynomial_real/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/polynomial_real/best_program.py -------------------------------------------------------------------------------- /examples/algotune/polynomial_real/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/polynomial_real/best_program_info.json -------------------------------------------------------------------------------- /examples/algotune/polynomial_real/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/polynomial_real/config.yaml -------------------------------------------------------------------------------- /examples/algotune/polynomial_real/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/polynomial_real/evaluator.py -------------------------------------------------------------------------------- /examples/algotune/polynomial_real/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/polynomial_real/initial_program.py -------------------------------------------------------------------------------- /examples/algotune/psd_cone_projection/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/psd_cone_projection/best_program.py -------------------------------------------------------------------------------- /examples/algotune/psd_cone_projection/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/psd_cone_projection/best_program_info.json -------------------------------------------------------------------------------- /examples/algotune/psd_cone_projection/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/psd_cone_projection/config.yaml -------------------------------------------------------------------------------- /examples/algotune/psd_cone_projection/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/psd_cone_projection/evaluator.py -------------------------------------------------------------------------------- /examples/algotune/psd_cone_projection/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/psd_cone_projection/initial_program.py -------------------------------------------------------------------------------- /examples/algotune/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/requirements.txt -------------------------------------------------------------------------------- /examples/algotune/run_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/run_benchmark.py -------------------------------------------------------------------------------- /examples/algotune/task_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/algotune/task_adapter.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/README.md -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/circle_packing_rect/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/circle_packing_rect/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/circle_packing_rect/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/circle_packing_rect/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/circle_packing_rect/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/circle_packing_rect/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/circle_packing_rect/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/erdos_min_overlap/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/erdos_min_overlap/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/erdos_min_overlap/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/erdos_min_overlap/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/erdos_min_overlap/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/erdos_min_overlap/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/erdos_min_overlap/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | jax 3 | optax -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/first_autocorr_ineq/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/first_autocorr_ineq/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/first_autocorr_ineq/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/first_autocorr_ineq/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/first_autocorr_ineq/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/first_autocorr_ineq/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/first_autocorr_ineq/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | jax 3 | optax -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_convex/13/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/heilbronn_convex/13/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_convex/13/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/heilbronn_convex/13/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_convex/13/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/heilbronn_convex/13/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_convex/13/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy 3 | -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_convex/14/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/heilbronn_convex/14/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_convex/14/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/heilbronn_convex/14/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_convex/14/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/heilbronn_convex/14/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_convex/14/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | jax 3 | optax -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_triangle/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/heilbronn_triangle/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_triangle/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/heilbronn_triangle/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_triangle/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/heilbronn_triangle/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/heilbronn_triangle/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/hexagon_packing/11/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/hexagon_packing/11/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/hexagon_packing/11/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/hexagon_packing/11/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/hexagon_packing/11/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/hexagon_packing/11/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/hexagon_packing/11/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/hexagon_packing/12/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/hexagon_packing/12/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/hexagon_packing/12/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/hexagon_packing/12/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/hexagon_packing/12/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/hexagon_packing/12/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/hexagon_packing/12/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/kissing_number/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/kissing_number/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/kissing_number/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/kissing_number/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/kissing_number/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/kissing_number/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/kissing_number/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/matmul/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/matmul/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/matmul/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/matmul/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/matmul/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/matmul/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/matmul/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | jax 3 | optax -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/minimizing_max_min_dist/2/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/minimizing_max_min_dist/2/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/minimizing_max_min_dist/2/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/minimizing_max_min_dist/2/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/minimizing_max_min_dist/2/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/minimizing_max_min_dist/2/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/minimizing_max_min_dist/2/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/minimizing_max_min_dist/3/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/minimizing_max_min_dist/3/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/minimizing_max_min_dist/3/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/minimizing_max_min_dist/3/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/minimizing_max_min_dist/3/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/minimizing_max_min_dist/3/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/minimizing_max_min_dist/3/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/second_autocorr_ineq/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/second_autocorr_ineq/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/second_autocorr_ineq/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/second_autocorr_ineq/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/second_autocorr_ineq/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/second_autocorr_ineq/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/second_autocorr_ineq/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | jax 3 | optax -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/sums_diffs_finite_sets/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/sums_diffs_finite_sets/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/sums_diffs_finite_sets/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/sums_diffs_finite_sets/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/sums_diffs_finite_sets/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/sums_diffs_finite_sets/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/sums_diffs_finite_sets/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | jax 3 | optax -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/third_autocorr_ineq/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/third_autocorr_ineq/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/third_autocorr_ineq/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/third_autocorr_ineq/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/third_autocorr_ineq/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/third_autocorr_ineq/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/third_autocorr_ineq/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | jax 3 | optax -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/uncertainty_ineq/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/uncertainty_ineq/config.yaml -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/uncertainty_ineq/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/uncertainty_ineq/evaluator.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/uncertainty_ineq/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/uncertainty_ineq/initial_program.py -------------------------------------------------------------------------------- /examples/alphaevolve_math_problems/uncertainty_ineq/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/alphaevolve_math_problems/uncertainty_ineq/requirements.txt -------------------------------------------------------------------------------- /examples/attention_optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/README.md -------------------------------------------------------------------------------- /examples/attention_optimization/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/config.yaml -------------------------------------------------------------------------------- /examples/attention_optimization/configs/failing_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/configs/failing_config.yaml -------------------------------------------------------------------------------- /examples/attention_optimization/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/evaluator.py -------------------------------------------------------------------------------- /examples/attention_optimization/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/initial_program.py -------------------------------------------------------------------------------- /examples/attention_optimization/legacy/prev_sim__works_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/legacy/prev_sim__works_evaluator.py -------------------------------------------------------------------------------- /examples/attention_optimization/mlir/attn.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/mlir/attn.mlir -------------------------------------------------------------------------------- /examples/attention_optimization/mlir/attn_template.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/mlir/attn_template.mlir -------------------------------------------------------------------------------- /examples/attention_optimization/mlir/baseline_attention.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/mlir/baseline_attention.mlir -------------------------------------------------------------------------------- /examples/attention_optimization/mlir/baseline_attention_v0.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/mlir/baseline_attention_v0.mlir -------------------------------------------------------------------------------- /examples/attention_optimization/mlir/export_mlir.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/mlir/export_mlir.mlir -------------------------------------------------------------------------------- /examples/attention_optimization/mlir/self_attention_torch_mlir_gen.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/mlir/self_attention_torch_mlir_gen.mlir -------------------------------------------------------------------------------- /examples/attention_optimization/mlir/self_attention_with_consts_torch_dialect.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/mlir/self_attention_with_consts_torch_dialect.mlir -------------------------------------------------------------------------------- /examples/attention_optimization/mlir/self_attn_with_consts_linalg_dialect.mlir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/mlir/self_attn_with_consts_linalg_dialect.mlir -------------------------------------------------------------------------------- /examples/attention_optimization/mlir/self_attn_with_consts_linalg_dialect.mlir.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/mlir/self_attn_with_consts_linalg_dialect.mlir.backup -------------------------------------------------------------------------------- /examples/attention_optimization/scripts/debug_real_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/scripts/debug_real_execution.py -------------------------------------------------------------------------------- /examples/attention_optimization/scripts/fix_tensor_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/scripts/fix_tensor_shapes.py -------------------------------------------------------------------------------- /examples/attention_optimization/scripts/mlir_lowering_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/scripts/mlir_lowering_pipeline.py -------------------------------------------------------------------------------- /examples/attention_optimization/scripts/mlir_syntax_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/scripts/mlir_syntax_test.py -------------------------------------------------------------------------------- /examples/attention_optimization/scripts/to_real_mlir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/scripts/to_real_mlir.sh -------------------------------------------------------------------------------- /examples/attention_optimization/tests/test_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/tests/test_evaluator.py -------------------------------------------------------------------------------- /examples/attention_optimization/tests/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/attention_optimization/tests/test_results.py -------------------------------------------------------------------------------- /examples/circle_packing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/README.md -------------------------------------------------------------------------------- /examples/circle_packing/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/best_program.py -------------------------------------------------------------------------------- /examples/circle_packing/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/best_program_info.json -------------------------------------------------------------------------------- /examples/circle_packing/circle_packing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/circle_packing_1.png -------------------------------------------------------------------------------- /examples/circle_packing/circle_packing_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/circle_packing_10.png -------------------------------------------------------------------------------- /examples/circle_packing/circle_packing_190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/circle_packing_190.png -------------------------------------------------------------------------------- /examples/circle_packing/circle_packing_460.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/circle_packing_460.png -------------------------------------------------------------------------------- /examples/circle_packing/config_phase_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/config_phase_1.yaml -------------------------------------------------------------------------------- /examples/circle_packing/config_phase_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/config_phase_2.yaml -------------------------------------------------------------------------------- /examples/circle_packing/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/evaluator.py -------------------------------------------------------------------------------- /examples/circle_packing/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing/initial_program.py -------------------------------------------------------------------------------- /examples/circle_packing/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | scipy -------------------------------------------------------------------------------- /examples/circle_packing_with_artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing_with_artifacts/README.md -------------------------------------------------------------------------------- /examples/circle_packing_with_artifacts/config_phase_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing_with_artifacts/config_phase_1.yaml -------------------------------------------------------------------------------- /examples/circle_packing_with_artifacts/config_phase_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing_with_artifacts/config_phase_2.yaml -------------------------------------------------------------------------------- /examples/circle_packing_with_artifacts/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing_with_artifacts/evaluator.py -------------------------------------------------------------------------------- /examples/circle_packing_with_artifacts/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/circle_packing_with_artifacts/initial_program.py -------------------------------------------------------------------------------- /examples/circle_packing_with_artifacts/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | scipy -------------------------------------------------------------------------------- /examples/function_minimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/function_minimization/README.md -------------------------------------------------------------------------------- /examples/function_minimization/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/function_minimization/config.yaml -------------------------------------------------------------------------------- /examples/function_minimization/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/function_minimization/evaluator.py -------------------------------------------------------------------------------- /examples/function_minimization/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/function_minimization/initial_program.py -------------------------------------------------------------------------------- /examples/function_minimization/requirements.txt: -------------------------------------------------------------------------------- 1 | scipy -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/README.md -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/config.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/config_qwen3_baseline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/config_qwen3_baseline.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/config_qwen3_evolution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/config_qwen3_evolution.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/dataset_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/dataset_settings.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/emotion_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/emotion_prompt.txt -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/emotion_prompt_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/emotion_prompt_dataset.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/evaluate_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/evaluate_prompts.py -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/evaluation_results_baseline_20250809_070942.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/evaluation_results_baseline_20250809_070942.json -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/evaluation_results_evolved_20250809_103002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/evaluation_results_evolved_20250809_103002.json -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/evaluator.py -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/gsm8k_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/gsm8k_prompt.txt -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/gsm8k_prompt_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/gsm8k_prompt_dataset.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/hotpotqa_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/hotpotqa_prompt.txt -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/hotpotqa_prompt_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/hotpotqa_prompt_dataset.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/hover_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/hover_prompt.txt -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/hover_prompt_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/hover_prompt_dataset.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/ifeval_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/ifeval_prompt.txt -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/ifeval_prompt_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/ifeval_prompt_dataset.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/initial_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/initial_prompt.txt -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/initial_prompt_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/initial_prompt_dataset.yaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | tqdm 3 | datasets 4 | pyyaml -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/run_evolution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/run_evolution.sh -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/templates/evaluation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/templates/evaluation.txt -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/templates/evaluator_system_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/templates/evaluator_system_message.txt -------------------------------------------------------------------------------- /examples/llm_prompt_optimization/templates/full_rewrite_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/llm_prompt_optimization/templates/full_rewrite_user.txt -------------------------------------------------------------------------------- /examples/lm_eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/README.md -------------------------------------------------------------------------------- /examples/lm_eval/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/config.yml -------------------------------------------------------------------------------- /examples/lm_eval/evaluator_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/evaluator_stub.py -------------------------------------------------------------------------------- /examples/lm_eval/initial_content_stub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/initial_content_stub.txt -------------------------------------------------------------------------------- /examples/lm_eval/lm-eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/lm-eval.py -------------------------------------------------------------------------------- /examples/lm_eval/prompts/diff_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/prompts/diff_user.txt -------------------------------------------------------------------------------- /examples/lm_eval/prompts/evaluation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/prompts/evaluation.txt -------------------------------------------------------------------------------- /examples/lm_eval/prompts/evolution_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/prompts/evolution_history.txt -------------------------------------------------------------------------------- /examples/lm_eval/prompts/full_rewrite_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/prompts/full_rewrite_user.txt -------------------------------------------------------------------------------- /examples/lm_eval/prompts/previous_attempt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/prompts/previous_attempt.txt -------------------------------------------------------------------------------- /examples/lm_eval/prompts/top_program.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/lm_eval/prompts/top_program.txt -------------------------------------------------------------------------------- /examples/lm_eval/requirements.txt: -------------------------------------------------------------------------------- 1 | datasets 2 | lm-eval -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/README.md -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/best_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/best_program.py -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/best_program_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/best_program_info.json -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/config.yaml -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/evaluator.py -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/initial_program.py -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/openevolve_comparison_results_1750305870.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/openevolve_comparison_results_1750305870.json -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/openevolve_comparison_summary_1750305870.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/openevolve_comparison_summary_1750305870.csv -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/quick_benchmark_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/quick_benchmark_test.py -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/quick_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/quick_demo.py -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/qwen3_benchmark_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/qwen3_benchmark_suite.py -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/requirements.txt -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/run_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/run_benchmarks.py -------------------------------------------------------------------------------- /examples/mlx_metal_kernel_opt/test_optimized_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/mlx_metal_kernel_opt/test_optimized_attention.py -------------------------------------------------------------------------------- /examples/online_judge_programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/online_judge_programming/README.md -------------------------------------------------------------------------------- /examples/online_judge_programming/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/online_judge_programming/config.yaml -------------------------------------------------------------------------------- /examples/online_judge_programming/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/online_judge_programming/evaluator.py -------------------------------------------------------------------------------- /examples/online_judge_programming/example.kattisrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/online_judge_programming/example.kattisrc -------------------------------------------------------------------------------- /examples/online_judge_programming/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/online_judge_programming/initial_program.py -------------------------------------------------------------------------------- /examples/online_judge_programming/requirements.txt: -------------------------------------------------------------------------------- 1 | lxml 2 | requests -------------------------------------------------------------------------------- /examples/online_judge_programming/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/online_judge_programming/submit.py -------------------------------------------------------------------------------- /examples/r_robust_regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/r_robust_regression/README.md -------------------------------------------------------------------------------- /examples/r_robust_regression/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/r_robust_regression/config.yaml -------------------------------------------------------------------------------- /examples/r_robust_regression/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/r_robust_regression/evaluator.py -------------------------------------------------------------------------------- /examples/r_robust_regression/initial_program.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/r_robust_regression/initial_program.r -------------------------------------------------------------------------------- /examples/r_robust_regression/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/r_robust_regression/requirements.txt -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/rust_adaptive_sort/README.md -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/rust_adaptive_sort/config.yaml -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/rust_adaptive_sort/evaluator.py -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/initial_program.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/rust_adaptive_sort/initial_program.rs -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/rust_adaptive_sort/requirements.txt -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/sort_test/.gitignore: -------------------------------------------------------------------------------- 1 | target/ -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/sort_test/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/rust_adaptive_sort/sort_test/Cargo.lock -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/sort_test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/rust_adaptive_sort/sort_test/Cargo.toml -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/sort_test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/rust_adaptive_sort/sort_test/src/lib.rs -------------------------------------------------------------------------------- /examples/rust_adaptive_sort/sort_test/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/rust_adaptive_sort/sort_test/src/main.rs -------------------------------------------------------------------------------- /examples/signal_processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/signal_processing/README.md -------------------------------------------------------------------------------- /examples/signal_processing/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/signal_processing/config.yaml -------------------------------------------------------------------------------- /examples/signal_processing/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/signal_processing/evaluator.py -------------------------------------------------------------------------------- /examples/signal_processing/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/signal_processing/initial_program.py -------------------------------------------------------------------------------- /examples/signal_processing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/signal_processing/requirements.txt -------------------------------------------------------------------------------- /examples/sldbench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/README.md -------------------------------------------------------------------------------- /examples/sldbench/configs/data_constrained_scaling_law.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/configs/data_constrained_scaling_law.yaml -------------------------------------------------------------------------------- /examples/sldbench/configs/domain_mixture_scaling_law.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/configs/domain_mixture_scaling_law.yaml -------------------------------------------------------------------------------- /examples/sldbench/configs/easy_question_scaling_law.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/configs/easy_question_scaling_law.yaml -------------------------------------------------------------------------------- /examples/sldbench/configs/lr_bsz_scaling_law.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/configs/lr_bsz_scaling_law.yaml -------------------------------------------------------------------------------- /examples/sldbench/configs/moe_scaling_law.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/configs/moe_scaling_law.yaml -------------------------------------------------------------------------------- /examples/sldbench/configs/parallel_scaling_law.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/configs/parallel_scaling_law.yaml -------------------------------------------------------------------------------- /examples/sldbench/configs/sft_scaling_law.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/configs/sft_scaling_law.yaml -------------------------------------------------------------------------------- /examples/sldbench/configs/vocab_scaling_law.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/configs/vocab_scaling_law.yaml -------------------------------------------------------------------------------- /examples/sldbench/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/data_loader.py -------------------------------------------------------------------------------- /examples/sldbench/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/evaluator.py -------------------------------------------------------------------------------- /examples/sldbench/init_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/init_program.py -------------------------------------------------------------------------------- /examples/sldbench/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/sldbench/run.sh -------------------------------------------------------------------------------- /examples/symbolic_regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/symbolic_regression/README.md -------------------------------------------------------------------------------- /examples/symbolic_regression/bench/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/symbolic_regression/bench/dataclasses.py -------------------------------------------------------------------------------- /examples/symbolic_regression/bench/datamodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/symbolic_regression/bench/datamodules.py -------------------------------------------------------------------------------- /examples/symbolic_regression/data_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/symbolic_regression/data_api.py -------------------------------------------------------------------------------- /examples/symbolic_regression/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/symbolic_regression/eval.py -------------------------------------------------------------------------------- /examples/symbolic_regression/scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/symbolic_regression/scripts.sh -------------------------------------------------------------------------------- /examples/web_scraper_optillm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/web_scraper_optillm/README.md -------------------------------------------------------------------------------- /examples/web_scraper_optillm/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/web_scraper_optillm/config.yaml -------------------------------------------------------------------------------- /examples/web_scraper_optillm/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/web_scraper_optillm/evaluator.py -------------------------------------------------------------------------------- /examples/web_scraper_optillm/initial_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/web_scraper_optillm/initial_program.py -------------------------------------------------------------------------------- /examples/web_scraper_optillm/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/examples/web_scraper_optillm/requirements.txt -------------------------------------------------------------------------------- /openevolve-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve-architecture.png -------------------------------------------------------------------------------- /openevolve-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve-logo.png -------------------------------------------------------------------------------- /openevolve-run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve-run.py -------------------------------------------------------------------------------- /openevolve-visualizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve-visualizer.png -------------------------------------------------------------------------------- /openevolve/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/__init__.py -------------------------------------------------------------------------------- /openevolve/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/_version.py -------------------------------------------------------------------------------- /openevolve/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/api.py -------------------------------------------------------------------------------- /openevolve/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/cli.py -------------------------------------------------------------------------------- /openevolve/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/config.py -------------------------------------------------------------------------------- /openevolve/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/controller.py -------------------------------------------------------------------------------- /openevolve/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/database.py -------------------------------------------------------------------------------- /openevolve/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/embedding.py -------------------------------------------------------------------------------- /openevolve/evaluation_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/evaluation_result.py -------------------------------------------------------------------------------- /openevolve/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/evaluator.py -------------------------------------------------------------------------------- /openevolve/evolution_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/evolution_trace.py -------------------------------------------------------------------------------- /openevolve/iteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/iteration.py -------------------------------------------------------------------------------- /openevolve/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/llm/__init__.py -------------------------------------------------------------------------------- /openevolve/llm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/llm/base.py -------------------------------------------------------------------------------- /openevolve/llm/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/llm/ensemble.py -------------------------------------------------------------------------------- /openevolve/llm/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/llm/openai.py -------------------------------------------------------------------------------- /openevolve/novelty_judge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/novelty_judge.py -------------------------------------------------------------------------------- /openevolve/process_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/process_parallel.py -------------------------------------------------------------------------------- /openevolve/prompt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompt/__init__.py -------------------------------------------------------------------------------- /openevolve/prompt/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompt/sampler.py -------------------------------------------------------------------------------- /openevolve/prompt/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompt/templates.py -------------------------------------------------------------------------------- /openevolve/prompts/defaults/diff_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/diff_user.txt -------------------------------------------------------------------------------- /openevolve/prompts/defaults/evaluation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/evaluation.txt -------------------------------------------------------------------------------- /openevolve/prompts/defaults/evaluator_system_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/evaluator_system_message.txt -------------------------------------------------------------------------------- /openevolve/prompts/defaults/evolution_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/evolution_history.txt -------------------------------------------------------------------------------- /openevolve/prompts/defaults/fragments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/fragments.json -------------------------------------------------------------------------------- /openevolve/prompts/defaults/full_rewrite_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/full_rewrite_user.txt -------------------------------------------------------------------------------- /openevolve/prompts/defaults/inspiration_program.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/inspiration_program.txt -------------------------------------------------------------------------------- /openevolve/prompts/defaults/inspirations_section.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/inspirations_section.txt -------------------------------------------------------------------------------- /openevolve/prompts/defaults/previous_attempt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/previous_attempt.txt -------------------------------------------------------------------------------- /openevolve/prompts/defaults/system_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/system_message.txt -------------------------------------------------------------------------------- /openevolve/prompts/defaults/top_program.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/prompts/defaults/top_program.txt -------------------------------------------------------------------------------- /openevolve/test_regional_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/test_regional_endpoint.py -------------------------------------------------------------------------------- /openevolve/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/utils/__init__.py -------------------------------------------------------------------------------- /openevolve/utils/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/utils/async_utils.py -------------------------------------------------------------------------------- /openevolve/utils/code_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/utils/code_utils.py -------------------------------------------------------------------------------- /openevolve/utils/format_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/utils/format_utils.py -------------------------------------------------------------------------------- /openevolve/utils/metrics_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/utils/metrics_utils.py -------------------------------------------------------------------------------- /openevolve/utils/trace_export_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/openevolve/utils/trace_export_utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /scripts/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/static/css/main.css -------------------------------------------------------------------------------- /scripts/static/js/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/static/js/graph.js -------------------------------------------------------------------------------- /scripts/static/js/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/static/js/list.js -------------------------------------------------------------------------------- /scripts/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/static/js/main.js -------------------------------------------------------------------------------- /scripts/static/js/mainUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/static/js/mainUI.js -------------------------------------------------------------------------------- /scripts/static/js/performance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/static/js/performance.js -------------------------------------------------------------------------------- /scripts/static/js/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/static/js/sidebar.js -------------------------------------------------------------------------------- /scripts/static/js/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/static/js/state.js -------------------------------------------------------------------------------- /scripts/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/templates/index.html -------------------------------------------------------------------------------- /scripts/templates/program_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/templates/program_page.html -------------------------------------------------------------------------------- /scripts/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/scripts/visualizer.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/setup.py -------------------------------------------------------------------------------- /tests/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/integration/README.md -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | # Integration tests directory -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/test_checkpoint_with_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/integration/test_checkpoint_with_llm.py -------------------------------------------------------------------------------- /tests/integration/test_evolution_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/integration/test_evolution_pipeline.py -------------------------------------------------------------------------------- /tests/integration/test_library_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/integration/test_library_api.py -------------------------------------------------------------------------------- /tests/integration/test_migration_with_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/integration/test_migration_with_llm.py -------------------------------------------------------------------------------- /tests/integration/test_migration_with_llm.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/integration/test_migration_with_llm.py.bak -------------------------------------------------------------------------------- /tests/integration/test_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/integration/test_smoke.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_api_key_from_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_api_key_from_env.py -------------------------------------------------------------------------------- /tests/test_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_artifacts.py -------------------------------------------------------------------------------- /tests/test_artifacts_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_artifacts_integration.py -------------------------------------------------------------------------------- /tests/test_cascade_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_cascade_validation.py -------------------------------------------------------------------------------- /tests/test_checkpoint_resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_checkpoint_resume.py -------------------------------------------------------------------------------- /tests/test_cli_model_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_cli_model_override.py -------------------------------------------------------------------------------- /tests/test_code_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_code_utils.py -------------------------------------------------------------------------------- /tests/test_concurrent_island_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_concurrent_island_access.py -------------------------------------------------------------------------------- /tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_database.py -------------------------------------------------------------------------------- /tests/test_database_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_database_cleanup.py -------------------------------------------------------------------------------- /tests/test_evaluator_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_evaluator_timeout.py -------------------------------------------------------------------------------- /tests/test_evolution_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_evolution_trace.py -------------------------------------------------------------------------------- /tests/test_feature_stats_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_feature_stats_persistence.py -------------------------------------------------------------------------------- /tests/test_file_extension_preservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_file_extension_preservation.py -------------------------------------------------------------------------------- /tests/test_grid_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_grid_stability.py -------------------------------------------------------------------------------- /tests/test_island_isolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_island_isolation.py -------------------------------------------------------------------------------- /tests/test_island_map_elites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_island_map_elites.py -------------------------------------------------------------------------------- /tests/test_island_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_island_migration.py -------------------------------------------------------------------------------- /tests/test_island_parent_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_island_parent_consistency.py -------------------------------------------------------------------------------- /tests/test_island_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_island_tracking.py -------------------------------------------------------------------------------- /tests/test_iteration_counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_iteration_counting.py -------------------------------------------------------------------------------- /tests/test_llm_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_llm_ensemble.py -------------------------------------------------------------------------------- /tests/test_map_elites_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_map_elites_features.py -------------------------------------------------------------------------------- /tests/test_migration_no_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_migration_no_duplicates.py -------------------------------------------------------------------------------- /tests/test_model_parameter_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_model_parameter_demo.py -------------------------------------------------------------------------------- /tests/test_novelty_asyncio_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_novelty_asyncio_issue.py -------------------------------------------------------------------------------- /tests/test_openai_model_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_openai_model_detection.py -------------------------------------------------------------------------------- /tests/test_process_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_process_parallel.py -------------------------------------------------------------------------------- /tests/test_process_parallel_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_process_parallel_fix.py -------------------------------------------------------------------------------- /tests/test_prompt_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_prompt_sampler.py -------------------------------------------------------------------------------- /tests/test_prompt_sampler_comprehensive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_prompt_sampler_comprehensive.py -------------------------------------------------------------------------------- /tests/test_reasoning_effort_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_reasoning_effort_config.py -------------------------------------------------------------------------------- /tests/test_regional_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_regional_endpoint.py -------------------------------------------------------------------------------- /tests/test_sample_from_island_ratios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_sample_from_island_ratios.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_valid_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmicsuperintelligence/openevolve/HEAD/tests/test_valid_configs.py --------------------------------------------------------------------------------