REVIEW 4 major objections 6 minor 64 references
A modified RIME algorithm with covariance learning and diversity enhancement for numerical optimization
T0 review · 4 major / 6 minor · reviewed 2026-08-04 · deepseek-v4-flash
Pith's one-line read A covariance-learning RIME variant claims top rankings on CEC2017, CEC2022, and 8 of 10 engineering problems.
desk verdict Plausible empirical claim, but the algorithm as written is ambiguous and the reported numbers can't be tied to a uniquely specified method. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is MRIME-CD, a variant of the physics-based RIME algorithm (rime-ice growth) with three mechanisms: GCLS (Gaussian-based covariance learning) fits a weighted Gaussian to a roulette-selected dominant population and samples new candidates from it; ABS (average bootstrapping) replaces early hard-rime jumps to the best individual with jumps to a weighted average of best and dominant positions; SPDM (stochastic covariance learning-based population diversity mechanism) watches a normalized population-volume ratio and an improvement count, and regenerates stagnant agents with a covariance-guided random update. Together they shift RIME toward diversity-preserving exploration while
What would settle it
Re-run the CEC2017 D=30 experiment with every algorithm using the same population size in a small grid (e.g., NP=20, 50, 100) while keeping all other settings from Table 2; if MRIME-CD is not Friedman-first at all three sizes, the claimed advantage depends on the unspecified NP.
Extended reading notes
Core claim
The central discovery is that replacing RIME's naive attraction to the current best individual with distribution-aware updates preserves fast convergence while restoring population diversity. In the soft-rime phase, a Gaussian covariance model of the dominant population generates new candidates; in the hard-rime phase, a weighted average of best and dominant positions replaces the direct jump to the best; and when a new volume-and-improvement stagnation test fires, stagnant individuals are refreshed by a stochastic covariance update. On CEC2017, MRIME-CD ranks first on 15, 20, 17, and 15 of the 29 functions at D=10,30,50,100, and on CEC2022 it ranks first overall with Friedman averages 3.17
Load-bearing premise
The reported superiority assumes that the population size, which the paper never states, is not a decisive factor; if another NP changes the rankings, the comparison collapses.
Editorial extensions
If this is right
- Each of the three strategies individually improves RIME, and the full MRIME-CD beats every single- or double-strategy variant in Friedman rankings, suggesting the mechanisms reinforce each other.
- GCLS is the largest single contributor to the gain; ABS contributes more on CEC2017 and SPDM more on CEC2022.
- The stagnation restart is conditional and rare by design, so for most iterations MRIME-CD adds no cost beyond the base RIME update; the overhead is confined to the agents that trigger SPDM.
- On ten constrained engineering problems, MRIME-CD ranks first in eight, indicating the benchmark improvements transfer to penalty-function formulations.
- The authors themselves note two limitations: the covariance-matrix computation is time-consuming (making MRIME-CD better suited to problems without strict time budgets), and on some CEC2022 composition functions the early fast convergence does not translate into top final accuracy.
Reading between the lines
- The paper never states the population size NP used in any experiment, so the reported Friedman rankings cannot be replicated exactly; re-running with a different NP could shrink or reverse the margins.
- The complexity analysis treats GCLS as cost-neutral, but computing and sampling a full D-dimensional covariance normally costs more than O(NP*D), so wall-clock overhead may exceed the stated asymptotic bound.
- The stagnation test multiplies per-dimension ranges; in high dimensions that product can underflow or be dominated by one tight dimension, so the 0.01 threshold is worth probing separately from the 2D count threshold.
- The pseudocode's equation pointers are internally inconsistent—updates reference Eq. (11) and Eq. (16), which define the covariance and volume ratio rather than the generation formulas in Eq. (12) and Eq. (18)—so reproduction should follow the displayed formulas.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes MRIME-CD, a modified RIME algorithm with three added mechanisms: Gaussian-based covariance learning strategies (GCLS), an average bootstrapping strategy (ABS), and a stochastic covariance learning-based population diversity mechanism (SPDM). The authors evaluate MRIME-CD on the CEC2017 (10/30/50/100-D) and CEC2022 (10/20-D) benchmarks, compare it with RIME and eight other published optimizers, and support the comparison with 51 independent runs, an ablation study over the three mechanisms, and Friedman, Wilcoxon, and Kruskal-Wallis tests. They report that MRIME-CD achieves the best average Friedman rank on all tested settings and also performs well on ten engineering design problems. The central claim is that MRIME-CD improves solution accuracy, convergence speed, and stability relative to basic RIME and the considered competitors.
Significance. If the algorithm were fully specified, the experimental evidence would be substantial. The paper uses standard benchmarks, a large number of runs, a complete ablation of the proposed mechanisms, and detailed appendix tables, which are real strengths. The reported gains over RIME are large and consistent across dimensions, and the ablation indicates that all three mechanisms contribute. However, the current manuscript contains load-bearing specification problems: the pseudocode references equations that are not position updates, the stagnation threshold is inconsistent between the text and the pseudocode, and key parameters such as the population size and dominant-group size are not reported. These issues prevent exact replication and mean the quantitative results cannot yet be attributed to a unique algorithm. The paper is therefore not acceptable in its present form, but the problems are fixable with a careful revision.
major comments (4)
- [Algorithm 1 and §3.4] The pseudocode's GCLS branch says 'Compute the rime agent's position using Eq.(11)' and the SPDM branch says 'Compute the rime agent's position using Eq.(16)'. Eq.(11) defines the weighted covariance matrix C, and Eq.(16) defines the population volume V_pop; neither is a position update. The intended updates appear to be Eq.(12)/(13) for GCLS and Eq.(18) for SPDM. As printed, Algorithm 1 and Figure 2 do not specify a unique algorithm, so the benchmark results cannot be reproduced from the paper alone. Please correct the equation references in the pseudocode and flowchart and make the branch conditions consistent with Eqs. (12)-(14).
- [§3.1 and Table 2] The dominant-group construction is incompletely specified. Section 3.1 describes a 'roulette domain selection mechanism' that first selects X_r and then selects nearby individuals by Euclidean distance, but the roulette probabilities, the distance criterion, and the group size S are not defined. S does not appear in Table 2. Since S controls the covariance estimate underlying both GCLS and SPDM, this is not a cosmetic omission: the method is not fully specified unless S and the selection procedure are given. Please provide the exact construction and the value(s) used in the experiments.
- [§3.3 vs Algorithm 1/Figure 2] The stagnation threshold is inconsistent. Section 3.3 states that SPDM is triggered when nVOL<0.01 and Count>2D, while Algorithm 1 and Figure 2 use nVOL<0.1. This is a ten-fold difference in the activation criterion, which changes how often stagnant individuals are updated and therefore affects all reported results. Please unify the threshold, state it in Table 2, and ideally include a sensitivity analysis over reasonable threshold values.
- [Table 2 and §4 experimental setup] The population size NP is never reported for MRIME-CD or any of the nine competitors, even though maxFEs, dimension, and run counts are given. Metaheuristic rankings are often sensitive to population size; the absence of NP prevents exact replication and leaves open the possibility that some of the observed gains depend on a favorable population sizing. Please report NP for every algorithm and show that the main conclusions are stable across a range of NP values. The same table should also state the default values for w, S, and the two stagnation thresholds. The authors' own conclusion that 'the parameter sensitivity of MRIME-CD can be further investigated' is not a substitute for this analysis.
minor comments (6)
- [Introduction, reference [15]] The text says 'RIME algorithm [15]' and credits Su et al., but reference [15] is Alpha Evolution by Gao and Zhang. The original RIME paper is not cited. This should be corrected because the entire comparison depends on the baseline RIME implementation.
- [Various sections] There are many typos and inconsistent abbreviations, e.g., 'MRIMR-CD', 'MRIMME-CD', 'MRIMR- CD', 'MRIME-CD' vs 'MRIMR-CD' in the same sentence. The manuscript needs a careful proofreading pass.
- [Table 6 caption] Table 6 has the caption 'Description of MRIME-CD variants', which duplicates the caption of Table 5. The table actually presents Friedman test results. Please renumber and re-caption.
- [Section 5, Table 16] The text says the engineering experiments used 30 independent runs, while Table 2 states 51 runs for the benchmark experiments. If the engineering results use a different number of runs, that should be stated explicitly in Section 5.
- [Section 3.1, Eqs. (13)-(14)] The typesetting of Eq. (13) and Eq. (14) is garbled, with the branch conditions not clearly aligned to the two cases. Since these equations are central to GCLS and ABS, please reformat them carefully.
- [Table 7 header] The last column header reads 'D=20D' and should be 'D=20'.
Circularity Check
No significant circularity: MRIME-CD's central claim is tested against external CEC benchmarks and external algorithms, and the three proposed mechanisms are defined by explicit equations independent of the measured results.
full rationale
The paper's central claim is that the proposed MRIME-CD improves upon basic RIME. This is supported by benchmark experiments on the independent CEC2017 and CEC2022 test suites and by comparisons with nine external algorithms. The three proposed mechanisms (GCLS, ABS, SPDM) are each given explicit mathematical definitions: Eq. (9)-(13) define the Gaussian-based covariance learning strategy, Eq. (14) defines the average bootstrapping strategy, and Eq. (15)-(18) define the stochastic covariance learning-based population diversity mechanism. None of these equations is defined in terms of the final benchmark rankings or the paper's concluding superiority claim. The algorithm's parameters (w=5, the stagnation thresholds, the dominant-group size) are hand-set or stated with reference to the original RIME paper, but they are not fitted to the CEC functions in a way that would make the benchmark outcomes a tautology. There is no self-citation chain carrying the argument: the paper cites ordinary prior art for RIME and comparator algorithms, and does not invoke a uniqueness theorem or an ansatz from the authors' own prior work as the reason its choices are forced. The observed internal inconsistencies in Algorithm 1 (e.g., referencing Eq. (11) or Eq. (16) for position updates when those equations define covariance and volume, respectively, and the 0.01 vs 0.1 threshold discrepancy) are serious reproducibility defects, but they are not circularity: they make the exact implemented algorithm ambiguous, yet they do not make the claimed result equivalent to an input or to a fitted constant. Similarly, the omission of population size NP in the experimental setup undermines replicability but does not constitute circular reasoning. Therefore, no load-bearing circular step is present, and the circularity score is 0.
Assumptions & free parameters
free parameters (5)
- w =
5
- nVOL threshold =
0.01 (text) / 0.1 (Algorithm 1)
- Count threshold =
2*D
- Dominant group size S and roulette selection parameters =
not specified
- Population size NP =
not reported
assumptions (4)
- domain assumption The RIME algorithm as referenced [15] behaves as the base described in Eqs. (1)-(8).
- domain assumption CEC2017 and CEC2022 benchmark functions are representative of hard numerical optimization problems.
- domain assumption The Gaussian covariance computed from the dominant population remains invertible and useful in all tested dimensions, including D=100.
- standard math Friedman, Wilcoxon, and Kruskal-Wallis tests are applied under assumptions that hold for 51 independent runs across functions.
Cite this review
Pith. "Pith review of A modified RIME algorithm with covariance learning and diversity enhancement for numerical optimization." pith.science (2026). https://pith.science/paper/OQ5EYJFC
@misc{pith2026250909529,
author = {Pith},
title = {Pith review of: A modified RIME algorithm with covariance learning and diversity enhancement for numerical optimization},
year = {2026},
howpublished = {\url{https://pith.science/paper/OQ5EYJFC}},
note = {Machine review of arXiv:2509.09529}
}
read the original abstract
Metaheuristics are widely applied for their ability to provide more efficient solutions. The RIME algorithm is a recently proposed physical-based metaheuristic algorithm with certain advantages. However, it suffers from rapid loss of population diversity during optimization and is prone to fall into local optima, leading to unbalanced exploitation and exploration. To address the shortcomings of RIME, this paper proposes a modified RIME with covariance learning and diversity enhancement (MRIME-CD). The algorithm applies three strategies to improve the optimization capability. First, a covariance learning strategy is introduced in the soft-rime search stage to increase the population diversity and balance the over-exploitation ability of RIME through the bootstrapping effect of dominant populations. Second, in order to moderate the tendency of RIME population to approach the optimal individual in the early search stage, an average bootstrapping strategy is introduced into the hard-rime puncture mechanism, which guides the population search through the weighted position of the dominant populations, thus enhancing the global search ability of RIME in the early stage. Finally, a new stagnation indicator is proposed, and a stochastic covariance learning strategy is used to update the stagnant individuals in the population when the algorithm gets stagnant, thus enhancing the ability to jump out of the local optimal solution. The proposed MRIME-CD algorithm is subjected to a series of validations on the CEC2017 test set, the CEC2022 test set, and the experimental results are analyzed using the Friedman test, the Wilcoxon rank sum test, and the Kruskal Wallis test. The results show that MRIME-CD can effectively improve the performance of basic RIME and has obvious superiorities in terms of solution accuracy, convergence speed and stability.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[1]
Slowik, A., Kwasnicka, H.: Nature Inspired Methods and Their Industry Applications-Swarm Intelligence Algorithms. IEEE Trans. Ind. INFORMATICS. 14, 1004–1015 (2018). https://doi.org/10.1109/TII.2017.2786782
arXiv 2018
-
[2]
Liu, R.N., Yang, B.Y., Zio, E., Chen, X.F.: Artificial intelligence for fault diagnosis of rotating machinery: A review. Mech. Syst. Signal Process. 108, 33–47 (2018). https://doi.org/10.1016/j.ymssp.2018.02.016
-
[3]
Yuan, Q.Q., Shen, H.F., Li, T.W., Li, Z.W., Li, S.W., Jiang, Y., Xu, H.Z., Tan, W.W., Yang, Q.Q., Wang, J.W., Gao, J.H., Zhan g, L.P.: Deep learning in environmental remote sensing: Achievements and challenges. Remote Sens. Environ. 241, (2020). https://doi.org/10.1016/j.rse.2020.111716
arXiv 2020
-
[4]
Hu, G., Zhong, J., Du, B., Wei, G.: An enhanced hybrid arithmetic optimization algorithm for engineering applications. Comput . Methods Appl. Mech. Eng. (2022). https://doi.org/10.1016/j.cma.2022.114901
arXiv 2022
-
[5]
Tang, A., Zhou, H., Han, T., Xie, L.: A modified manta ray foraging optimization for global optimization problems. IEEE Acces s. (2021). https://doi.org/10.1109/ACCESS.2021.3113323
arXiv 2021
-
[6]
Tang, A., Zhou, H., Han, T., Xie, L.: A chaos sparrow search algorithm with logarithmic spiral and adaptive step for engineer ing problems. C. - Comput. Model. Eng. Sci. (2022). https://doi.org/10.32604/cmes.2022.017310
arXiv 2022
-
[7]
Adegboye, O.R., Deniz Ülker, E.: Gaussian Mutation Specular Reflection Learning with Local Escaping Operator Based Artificial Electric Field Algorithm and Its Engineering Application. Appl. Sci. (2023). https://doi.org/10.3390/app13074157
-
[8]
Xie, L., Han, T., Zhou, H., Zhang, Z.-R., Han, B., Tang, A.: Tuna Swarm Optimization: A Novel Swarm -Based Metaheuristic Algorithm for Global Optimization. Comput. Intell. Neurosci. (2021). https://doi.org/10.1155/2021/9210050
Show all 64 references
-
[9]
Xue, J., Shen, B.: A novel swarm intelligence optimization approach: sparrow search algorithm. Syst. Sci. Control Eng. (2020). https://doi.org/10.1080/21642583.2019.1708830
2020
-
[10]
Abualigah, L., Yousri, D., Abd Elaziz, M., Ewees, A.A., Al-qaness, M.A.A., Gandomi, A.H.: Aquila Optimizer: A novel meta-heuristic optimization algorithm. Comput. Ind. Eng. (2021). https://doi.org/10.1016/j.cie.2021.107250
2021
-
[11]
Expert Syst
Jia, H., Peng, X., Lang, C.: Remora optimization algorithm. Expert Syst. Appl. (2021). https://doi.org/10.1016/j.eswa.2021.115665
2021
-
[12]
Holland, J.H.: Genetic algorithms. Sci. Am. (1992). https://doi.org/10.1038/scientificamerican0792-66
1992 doi
-
[13]
Swarm Evol
Opara, K.R., Arabas, J.: Differential Evolution: A survey of theoretical analyses. Swarm Evol. Comput. (2019). https://doi.org/10.1016/j.swevo.2018.06.010
2019 doi
-
[14]
-G., Schwefel, H.-P.: Evolution strategies – A comprehensive introduction
Beyer, H. -G., Schwefel, H.-P.: Evolution strategies – A comprehensive introduction. Nat. Comput. (2002). https://doi.org/10.1023/A:1015059928466
2002 doi
-
[15]
Gao, H., Zhang, Q.K.: Alpha evolution: An efficient evolutionary algorithm with evolution path adaptation and matrix generati on. Eng. Appl. Artif. Intell. 137, (2024). https://doi.org/10.1016/j.engappai.2024.109202
2024
-
[16]
NEURAL Comput
Sulaiman, M.H., Mustaffa, Z., Saari, M.M., Daniyal, H., Mirjalili, S.: Evolutionary mating algorithm. NEURAL Comput. Appl. 35, 487–516 (2023). https://doi.org/10.1007/s00521-022-07761-w
2023 doi
-
[17]
In: Springer Tracts in Civil Engineering (2023)
Huang, W., Xu, J.: Particle Swarm Optimization. In: Springer Tracts in Civil Engineering (2023)
2023
-
[18]
In: Proceedings of the 1999 Congress on Evolutionary Computation, CEC 1999 (1999)
Dorigo, M., Di Caro, G.: Ant colony optimization: A new meta -heuristic. In: Proceedings of the 1999 Congress on Evolutionary Computation, CEC 1999 (1999)
1999
-
[19]
Mirjalili, S., Mirjalili, S.M., Lewis, A.: Grey Wolf Optimizer. Adv. Eng. Softw. (2014). https://doi.org/10.1016/j.advengsoft.2013.12.007
2014 doi
-
[20]
Wang, X.W.: Eurasian lynx optimizer: a novel metaheuristic optimization algorithm for global optimization and engineering applications. Phys. Scr. 99, (2024). https://doi.org/10.1088/1402-4896/ad86f7
2024 doi
-
[21]
Agushaka, J.O., Ezugwu, A.E., Abualigah, L.: Dwarf Mongoose Optimization Algorithm. Comput. Methods Appl. Mech. Eng. (2022). https://doi.org/10.1016/j.cma.2022.114570
2022
-
[22]
Wang, X.W.: Draco lizard optimizer: a novel metaheuristic algorithm for global optimization problems. Evol. Intell. 18, (2025). https://doi.org/10.1007/s12065-024-00998-5
2025 doi
-
[23]
Li, S., Chen, H., Wang, M., Heidari, A.A., Mirjalili, S.: Slime mould algorithm: A new method for stochastic optimization. Futur. Gener. Comput. Syst. (2020). https://doi.org/10.1016/j.future.2020.03.055
2020 doi
-
[24]
Wang, X.W.: Artificial meerkat algorithm: a new metaheuristic algorithm for solving optimization problems. Phys. Scr. 99, (2024). https://doi.org/10.1088/1402-4896/ad91f2
2024 doi
-
[25]
Jia, H., Rao, H., Wen, C., Mirjalili, S.: Crayfish optimization algorithm. Artif. Intell. Rev. (2023). https://doi.org/10.1007/s10462-023-10567-4
2023 doi
-
[26]
Hu, G., Guo, Y., Wei, G., Abualigah, L.: Genghis Khan shark optimizer: A novel nature -inspired algorithm for engineering optimization. Adv. Eng. Informatics. (2023). https://doi.org/10.1016/j.aei.2023.102210
2023
-
[27]
NEURAL Comput
Ezugwu, A.E., Agushaka, J.O., Abualigah, L., Mirjalili, S., Gandomi, A.H.: Prairie Dog Optimization Algorithm. NEURAL Comput. Appl. 34, 20017–20065 (2022). https://doi.org/10.1007/s00521-022-07530-9
2022 doi
-
[28]
Neural Comput
Agushaka, J.O., Ezugwu, A.E., Abualigah, L.: Gazelle optimization algorithm: a novel nature -inspired metaheuristic optimizer. Neural Comput. Appl. (2023). https://doi.org/10.1007/s00521-022-07854-6
2023 doi
-
[29]
V., Savsani, V.J., Vakharia, D.P.: Teaching -learning-based optimization: A novel method for constrained mechanical design optimization problems
Rao, R. V., Savsani, V.J., Vakharia, D.P.: Teaching -learning-based optimization: A novel method for constrained mechanical design optimization problems. CAD Comput. Aided Des. (2011). https://doi.org/10.1016/j.cad.2010.12.015
2011 doi
-
[30]
Expert Syst
Tian, Z., Gai, M.: Football team training algorithm: A novel sport -inspired meta -heuristic optimization algorithm for global optimization. Expert Syst. Appl. (2024). https://doi.org/10.1016/j.eswa.2023.123088
2024
-
[31]
Knowledge-Based Syst
Askari, Q., Younas, I., Saeed, M.: Political Optimizer: A novel socio-inspired meta-heuristic for global optimization. Knowledge-Based Syst. (2020). https://doi.org/10.1016/j.knosys.2020.105709
2020
-
[32]
Cluster Comput
Jia, H., Wen, Q., Wang, Y., Mirjalili, S.: Catch fish optimization algorithm: a new human behavior algorithm for solving clus tering problems. Cluster Comput. 27, 13295–13332 (2024). https://doi.org/10.1007/s10586-024-04618-w
2024 doi
-
[33]
Moosavi, S.H.S., Bardsiri, V.K.: Poor and rich optimization algorithm: A new human-based and multi populations algorithm. Eng. Appl. Artif. Intell. 86, 165–181 (2019). https://doi.org/10.1016/j.engappai.2019.08.025
2019 doi
-
[34]
Lian, J.B., Zhu, T., Ma, L., Wu, X.C., Heidari, A.A., Chen, Y., Chen, H.L., Hui, G.H.: The educational competition optimizer. Int. J. Syst. Sci. 55, 3185–3222 (2024). https://doi.org/10.1080/00207721.2024.2367079
2024
-
[35]
Dehghani, M., Trojovsky, P.: Hybrid leader based optimization: a new stochastic optimization algorithm for solving optimizati on applications. Sci. Rep. 12, (2022). https://doi.org/10.1038/s41598-022-09514-0
2022 doi
-
[36]
Knowledge -Based Syst
Mirjalili, S.: SCA: A Sine Cosine Algorithm for solving optimization problems. Knowledge -Based Syst. (2016). https://doi.org/10.1016/j.knosys.2015.12.022
2016 doi
-
[37]
Abualigah, L., Diabat, A., Mirjalili, S., Abd Elaziz, M., Gandomi, A.H.: The Arithmetic Optimization Algorithm. Comput. Metho ds Appl. Mech. Eng. (2021). https://doi.org/10.1016/j.cma.2020.113609
2021
-
[38]
Zhao, W.G., Wang, L.Y., Zhang, Z.X., Mirjalili, S., Khodadadi, N., Ge, Q.: Quadratic Interpolation Optimization (QIO): A new optimization algorithm based on generalized quadratic interpolation and its applications to real -world engineering problems. Comput. Methods Appl. Mech...
2023
-
[39]
NEURAL Comput
Layeb, A.: Tangent search algorithm for solving optimization problems. NEURAL Comput. Appl. 34, 8853–8884 (2022). https://doi.org/10.1007/s00521-022-06908-z
2022 doi
-
[40]
Expert Syst
Zhao, S.J., Zhang, T.R., Cai, L., Yang, R.H.: Triangulation topology aggregation optimizer: A novel mathematics -based meta-heuristic algorithm for continuous optimization and engineering applications. Expert Syst. Appl. 238, (2024). https://doi.org/10.1016/j.eswa.2023.121744
2024
-
[41]
Knowledge-Based Syst
Bai, J., Li, Y., Zheng, M., Khatir, S., Benaissa, B., Abualigah, L., Abdel Wahab, M.: A Sinh Cosh optimizer. Knowledge-Based Syst. (2023). https://doi.org/10.1016/j.knosys.2023.111081
2023
-
[42]
Science (80 -
Kirkpatrick, S., Gelatt, C.D., Vecchi, M.P.: Optimization by simulated annealing. Science (80 -. ). (1983). https://doi.org/10.1126/science.220.4598.671
1983 doi
-
[43]
Rashedi, E., Nezamabadi -pour, H., Saryazdi, S.: GSA: A Gravitational Search Algorithm. Inf. Sci. (Ny). (2009). https://doi.org/10.1016/j.ins.2009.03.004
2009 doi
-
[44]
Expert Syst
Deng, L., Liu, S.: Snow ablation optimizer: A novel metaheuristic technique for numerical optimization and engineering design . Expert Syst. Appl. (2023). https://doi.org/10.1016/j.eswa.2023.120069
2023
-
[45]
Expert Syst
Gao, Y.: PID -based search algorithm: A novel metaheuristic algorithm based on PID algorithm. Expert Syst. Appl. (2023). https://doi.org/10.1016/j.eswa.2023.120886
2023
-
[46]
Knowledg e-Based Syst
Faramarzi, A., Heidarinejad, M., Stephens, B., Mirjalili, S.: Equilibrium optimizer: A novel optimization algorithm. Knowledg e-Based Syst. (2020). https://doi.org/10.1016/j.knosys.2019.105190
2020
-
[47]
Neural Comput
Mirjalili, S., Mirjalili, S.M., Hatamlou, A.: Multi-Verse Optimizer: a nature-inspired algorithm for global optimization. Neural Comput. Appl. (2016). https://doi.org/10.1007/s00521-015-1870-7
2016 doi
-
[48]
Neurocomputing
Yuan, C., Zhao, D., Heidari, A.A., Liu, L., Chen, Y., Chen, H.: Polar lights optimizer: Algorithm and applications in image segmentation and feature selection. Neurocomputing. 607, 128427 (2024). https://doi.org/https://doi.org/10.1016/j.neucom.2024.128427
2024
-
[49]
Displays
Xing, J., Heidari, A.A., Chen, H., Zhao, H.: WHRIME: A weight -based recursive hierarchical RIME optimizer for breast cancer histopathology image segmentation. Displays. (2024). https://doi.org/10.1016/j.displa.2024.102648
2024
-
[50]
Di, Han, T., Zhou, H., Xie, L.: An improved equilibrium optimizer with application in unmanned aerial vehicle path planning
Tang, A. Di, Han, T., Zhou, H., Xie, L.: An improved equilibrium optimizer with application in unmanned aerial vehicle path planning. Sensors. (2021). https://doi.org/10.3390/s21051814
2021 doi
-
[51]
Cao, H.Y., Qian, X.D., Zhou, Y.L.: Large-scale structural optimization using metaheuristic algorithms with elitism and a filter strategy. Struct. Multidiscip. Optim. 57, 799–814 (2018). https://doi.org/10.1007/s00158-017-1784-3
2018 doi
-
[52]
Adegboye, O.R., Feda, A.K., Ojekemi, O.R., Agyekum, E.B., Khan, B., Kamel, S.: DGS -SCSO: Enhancing Sand Cat Swarm Optimization with Dynamic Pinhole Imaging and Golden Sine Algorithm for improved numerical optimization performance. Sci. Rep . (2024). https://doi.org/10.1038/s4...
2024 doi
-
[53]
Adegboye, O.R., Feda, A.K., Ojekemi, O.S., Agyekum, E.B., Hussien, A.G., Kamel, S.: Chaotic opposition learning with mirror reflection and worst individual disturbance grey wolf optimizer for continuous global numerical optimization. Sci. Rep. (2024). https://doi.org/10.1038/s...
2024 doi
-
[54]
Rush to Heuristics
Chicco, G., Mazza, A.: Metaheuristic Optimization of Power and Energy Systems: Underlying Principles and Main Issues of the “ Rush to Heuristics.” ENERGIES. 13, (2020). https://doi.org/10.3390/en13195097
2020 doi
-
[55]
Cluster Comput
Adegboye, O.R., Feda, A.K.: Improved exponential distribution optimizer: enhancing global numerical optimization problem solving and optimizing machine learning parameters. Cluster Comput. 28, 128 (2024). https://doi.org/10.1007/s10586-024-04753-4
2024 doi
-
[56]
Energies
UU Republik Indonesia, Munawir, M., Nasional, B.S., Susanta, G., Jatimnet.com, MajaMojokerto.net , et al .: PENENTUAN ALTERNATIF LOKASI TEMPAT PEMBUANGAN AKHIR (TPA) SAMPAH DI KABUPATEN SIDOARJO. Energies. (2022)
2022
-
[57]
Xiong, G.J., Shi, D.Y., Zhang, J., Zhang, Y.: A binary coded brain storm optimization for fault section diagnosis of power systems. Electr. POWER Syst. Res. 163, 441–451 (2018). https://doi.org/10.1016/j.epsr.2018.07.009
2018 doi
-
[58]
Expert Syst
Zheng, X.Y., Zhang, C.S., Zhang, B.: A Mayfly algorithm for cardinality constrained portfolio optimization. Expert Syst. Appl . 230, (2023). https://doi.org/10.1016/j.eswa.2023.120656
2023
-
[59]
Batis, M., Chen, Y., Wang, M.J., Liu, L., Heidari, A.A., Chen, H.L.: ACGRIME: adaptive chaotic Gaussian RIME optimizer for gl obal optimization and feature selection. Clust. Comput. J. NETWORKS Softw. TOOLS Appl. 28, (2025). https://doi.org/10.1007/s10586-024-04716-9
2025 doi
-
[60]
iScience
Huang, J., Chen, Y., Heidari, A.A., Liu, L., Chen, H., Liang, G.: IRIME: Mitigating exploitation -exploration imbalance in RIME optimization for feature selection. iScience. 27, (2024). https://doi.org/10.1016/j.isci.2024.110561
2024
-
[61]
Chen, S.-S., Jiang, Y.-T., Chen, W., Li, X.-Y.: TERIME: An improved RIME algorithm with enhanced exploration and exploitation for robust parameter extraction of photovoltaic models. ArXiv. abs/2407.1, (2024)
2024
-
[62]
Yin, S., Luo, Q., Zhou, Y.: EOSMA: An Equilibrium Optimizer Slime Mould Algorithm for Engineering Design Problems. Arab. J. S ci. Eng. (2022). https://doi.org/10.1007/s13369-021-06513-7
2022 doi
-
[63]
Zhu, W., Li, Z.H., Su, H., Liu, L., Heidari, A.A., Chen, H.L., Liang, G.X.: Optimizing microseismic monitoring: a fusion of Gaussian-Cauchy and adaptive weight strategies. J. Comput. Des. Eng. 11, (2024). https://doi.org/10.1093/jcde/qwae073
2024 doi
-
[64]
Nadimi-Shahraki, M.H., Taghian, S., Javaheri, D., Sadiq, A.S., Khodadadi, N., Mirjalili, S.: MTV -SCA: multi-trial vector-based sine cosine algorithm. Clust. Comput. J. NETWORKS Softw. TOOLS Appl. 27, 13471–13515 (2024). https://doi.org/10.1007/s10586-024-04602-4
2024 doi
Reviewed August 4, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.