Commit Graph

218 Commits

Author SHA1 Message Date
leo
83a8c94ea9
cec2020: implement Ackley func
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-06 15:48:03 +01:00
leo
9795287dc9
cec2020: implement Happycat func
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-06 15:43:00 +01:00
leo
ba0f4ff8b4
cec2020: implement Discus func
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-06 15:36:05 +01:00
leo
de1b2021c5
cec2020: implement HGBat func
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-06 15:30:59 +01:00
leo
ce615d8a26
cec2020: implement HighConditionElliptic func
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-06 00:01:22 +01:00
leo
6bf42c2194
cec2020: implement Rastrigin func + test
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-05 13:28:05 +01:00
leo
d835714dfd
cec2020: implement Rosenbrock func
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-05 13:16:58 +01:00
leo
6b20fc8ea5
cec2020: implement Griewank func
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-05 00:05:53 +01:00
leo
ce1b587b22
cec2020: implement SchwefelModified func
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-04 22:38:37 +01:00
leo
5282cdc797
bench: add NewfuncParams()
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-04 22:17:41 +01:00
leo
cb48a6dd56
cec2020: add doc.go
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-04 21:58:21 +01:00
leo
ff9554b57f
cec2020: add basicFunctions.go
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-04 21:50:19 +01:00
leo
14f39fc9c3
cec2020: add declarations of bench functions
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-04 20:36:57 +01:00
leo
3237fd16c6
actually don't run jDE with run_test.go
All checks were successful
continuous-integration/drone/push Build is passing
* an incomplete fix was attempted in 071cb75 but that did not prevent
  jDE from running with tests (as it does by default)
* bring func-local vars to pkg level to be able to manipulate them
  programatically (such as from tests)
* prevent jDE from running by setting -jde=false
* reword log message in test
2023-02-04 20:54:49 +01:00
leo
fa441d8b1f
chore(bench): res -> sum in Schwefel
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-04 19:24:50 +01:00
leo
12f0aecd5a
cec2020: add asymptotic func
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-04 00:50:13 +01:00
leo
071cb75853
run.go: exit(0) when no algo is specified
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-03 20:39:14 +01:00
leo
5192790ce4
cec2020: implement Shift, Rotate and ShiftRotate
All checks were successful
continuous-integration/drone/push Build is passing
* also add log.go
2023-02-03 20:33:07 +01:00
leo
1dda921e42
mv: contants.go -> constants.go
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-03 17:35:32 +01:00
leo
0f32f04143
add cec2020 package (wip)
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-01 23:26:37 +01:00
leo
127ffe20c5
report: update meta.sty [skip ci] 2023-01-21 22:54:08 +01:00
leo
7585bd4889
go(run): add flags to allow algorithm selection
All checks were successful
continuous-integration/drone/push Build is passing
* jDE runs by default
* errors out if none of the algorithms is chosen
* also increase test timeout
2023-01-21 17:26:01 +01:00
leo
47b21dca0b
go(de): use method to get bestIndividual
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-21 13:24:36 +01:00
leo
cffbcd9866
go: improve plotting for GAs
All checks were successful
continuous-integration/drone/push Build is passing
* handle special cases
* extend title, description
* set custom x axis description
2023-01-21 02:45:56 +01:00
leo
b742f0e091
go(algo,de): implement jDE (wip)
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-21 02:35:29 +01:00
leo
cba6e62b50
go(de): get rid of fVect,crVect
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-20 23:36:35 +01:00
leo
3e78332869
go: impl. Get{Best,Worst}Idx Population methods
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-20 20:33:23 +01:00
leo
37710c95b3
go(de): implement Clear method on Population
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-20 18:44:45 +01:00
leo
93206b2cd1
go(de): implement Init(),Reinit() on Population
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-20 18:38:29 +01:00
leo
07d3d51ba7
go(de): make Population more ephemeral
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-20 18:36:04 +01:00
leo
e4be83ef08
go(de): add benchMinIters param
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-20 15:52:45 +01:00
leo
fe8e071460
go(de): add {f,cr}Vect
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-19 21:42:56 +01:00
leo
ab004c8308
chore: go(de): update wording [skip ci] 2023-01-19 20:36:03 +01:00
leo
86533bdefe
go(de): declare initialised after pop.Init()
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-19 20:30:14 +01:00
leo
8f55d80731
go(de): don't run evolve concurrently for dimens
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-19 20:25:42 +01:00
leo
2e5bb5c538
go(de): add stats chan to the model
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-19 20:22:07 +01:00
leo
7e358b01af
go(algo): add DojDE()
All checks were successful
continuous-integration/drone/push Build is passing
the implementation is a WIP.

adjust linter ignoring in algo/plot.go: unparam does not like that
fPrefix is "plot" each time the func is called. this might get reworked
later.

also add field from bench/bench.go - DimensionsGA - Genetic Algorithm
specific dimensions.
2023-01-19 20:11:22 +01:00
leo
93dc845fbb
go(de): add InitAndRun
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-19 19:57:41 +01:00
leo
2216b93426
go(de): add Run(), unexport Evolve()
All checks were successful
continuous-integration/drone/push Build is passing
* use evolve()
* add a way to calculate GAMaxFES (MaxFES for Genetic Algorithms) in the
  bench package
2023-01-19 19:55:41 +01:00
leo
525b30c38e
chore: add package de (Differential Evolution)
All checks were successful
continuous-integration/drone/push Build is passing
base package (wip)
2023-01-16 13:30:38 +01:00
leo
84fcad715c
chore: add jDE.go
All checks were successful
continuous-integration/drone/push Build is passing
2022-12-27 01:27:16 +01:00
leo
f25011b7fc
go(bench): add Rastrigin function defintion+test 2022-12-27 00:56:54 +01:00
leo
fc53e2a66a
ci: bump golangci-lint to v1.50.1
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-13 22:18:17 +01:00
leo
857669ca9a
flake(shell): add cachix
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-13 22:10:26 +01:00
leo
289280a9e5
chore(readme,flake): update descriptions [skip ci] 2023-01-13 22:06:57 +01:00
leo
21b4888277
chore(go): add comments [skip ci] 2023-01-13 22:01:44 +01:00
leo
3f77c573a6
chore: 2023
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-12 23:35:51 +01:00
leo
9645a252d0
flake(shell): don't add golangci-lint to env
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-12 23:18:25 +01:00
leo
7d3cd18ff2
flake(go): use go_1_18 everywhere
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-12 23:17:37 +01:00
leo
390fe9b4da
flake(shell): comment out GOPROXY = "direct"
All checks were successful
continuous-integration/drone/push Build is passing
2023-01-12 23:16:21 +01:00