From bacd2ccfa470010610848abe2f59b39862f71ac5 Mon Sep 17 00:00:00 2001 From: NATSUME Hiroaki Date: Tue, 29 Aug 2023 18:28:52 +0900 Subject: [PATCH 1/3] Add .vscode settings.json --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..cb088c8a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dotnet.defaultSolution": "Tunny.sln" +} \ No newline at end of file From 3a33b859cda39575a369cfb30454ef6f23c977e6 Mon Sep 17 00:00:00 2001 From: NATSUME Hiroaki Date: Tue, 29 Aug 2023 18:31:21 +0900 Subject: [PATCH 2/3] Fix constraint notification message box --- Tunny/Solver/Algorithm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tunny/Solver/Algorithm.cs b/Tunny/Solver/Algorithm.cs index b1612a99..a5e49e13 100644 --- a/Tunny/Solver/Algorithm.cs +++ b/Tunny/Solver/Algorithm.cs @@ -483,7 +483,7 @@ private dynamic SetSamplerSettings(int samplerType, dynamic optuna, bool hasCons default: throw new ArgumentException("Unknown sampler type"); } - if (samplerType > 3 && hasConstraints) + if (samplerType > 4 && hasConstraints) { TunnyMessageBox.Show("Only TPE, GP and NSGA support constraints. Optimization is run without considering constraints.", "Tunny"); } From e545fde8f2704977bd06394e9a65ac4b3c27e49c Mon Sep 17 00:00:00 2001 From: NATSUME Hiroaki Date: Tue, 29 Aug 2023 18:37:56 +0900 Subject: [PATCH 3/3] Update README --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e9efbb9..067635a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,32 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p Please see [here](https://github.com/hrntsm/Tunny/releases) for the data released for each version. +## [UNRELEASED] -xxxx-xx-xx + +### Added + +for new features. + +### Changed + +for changes in existing functionality. + +### Deprecated + +for soon-to-be removed features. + +### Removed + +for now removed features. + +### Fixed + +- NSGA-III supports constraints, but was getting a message that constraints are not taken into account + +### Security + +in case of vulnerabilities. + ## [v0.8.1] -2023-07-30 ### Added