From 2bf64ea5943070427dfd85c7db1f97427578aedf Mon Sep 17 00:00:00 2001 From: Masahiro Nomura Date: Mon, 22 Jan 2024 12:53:35 +0900 Subject: [PATCH] rename --- .github/workflows/examples.yml | 2 +- examples/{2d_quadratic_function.py => quadratic_2d_function.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename examples/{2d_quadratic_function.py => quadratic_2d_function.py} (100%) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 9c33faa..1354d7f 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -25,7 +25,7 @@ jobs: pip install -U pip setuptools pip install --progress-bar off optuna numpy scipy pip install --progress-bar off -U . - - run: python examples/2d_quadratic_function.py + - run: python examples/quadratic_2d_function.py - run: python examples/ipop_cma.py - run: python examples/bipop_cma.py - run: python examples/ellipsoid_function.py diff --git a/examples/2d_quadratic_function.py b/examples/quadratic_2d_function.py similarity index 100% rename from examples/2d_quadratic_function.py rename to examples/quadratic_2d_function.py