This commit is contained in:
2025-09-04 14:09:25 +08:00
parent c44a6c722f
commit 5326c05006

View File

@@ -0,0 +1,7 @@
package org.dromara.easyai.i;
public interface PsoFunction {//粒子群回调函数
//根据参数返回函数值
float getResult(float[] parameter,int id) throws Exception;
}