遗传算法001

This commit is contained in:
Cricial
2025-10-18 16:16:05 +08:00
parent 91f2122b65
commit dfd5c5b32d
49 changed files with 8473 additions and 1825 deletions

15
GA_Agent_0925/config.json Normal file
View File

@@ -0,0 +1,15 @@
{
"pop_size": 5,
"n_gen": 5,
"n_var": 12,
"bound_min": -5,
"bound_max": 5,
"cx_prob": 0.5,
"mut_prob": 0.2,
"cx_alpha": 0.5,
"mut_sigma": 0.1,
"mut_indpb": 0.2,
"tourn_size": 3,
"n_jobs": 1,
"seed": 42
}