From 48a7eabf63b31283b63e375442010168abbd21a7 Mon Sep 17 00:00:00 2001 From: Jesus Mejia Date: Wed, 8 Mar 2023 10:04:49 -0600 Subject: [PATCH] update version, and other minor update --- Project.toml | 2 +- src/common/set_user_solutions.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 75614acf..99b7ebd9 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Metaheuristics" uuid = "bcdb8e00-2c21-11e9-3065-2b553b22f898" authors = ["Jesus Mejia "] -version = "3.2.14" +version = "3.2.15" [deps] Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7" diff --git a/src/common/set_user_solutions.jl b/src/common/set_user_solutions.jl index b1c3f123..757d78b1 100644 --- a/src/common/set_user_solutions.jl +++ b/src/common/set_user_solutions.jl @@ -16,7 +16,7 @@ f (generic function with 1 method) julia> algo = ECA(N = 61); # optimizer julia> # one solution can be provided - x0 = [0.5, 0.5 0.5]; + x0 = [0.5, 0.5, 0.5]; julia> set_user_solutions!(algo, x0, f);