0

只是想知道是否有人对 Delphi 的优化实用程序有建议。例如单纯形,遗传算法等...

基本上我需要将我的总体模型优化为一个完整的黑盒函数,在预先确定的边界内输入变量,如倾斜角或数组大小。输出通常是平滑的曲线,通常没有假峰。

旧的 NR Pascal 东西看起来有点过时(没有函数作为变量等)。

非常感谢,布赖恩

4

2 回答 2

1

I found a program, written in Pascal, that simulates the Simplex method. It's a little old, but you may convert it into Delphi. You can find it

here

I hope it's of some use to you.

PS: If you have some cash to spend, try

here

于 2013-01-31T10:38:16.367 回答
0

TSimplex 类 https://iie.fing.edu.uy/svn/SimSEE/src/rchlib/mat/usimplex.pas

对于混合整数单纯形 TMIPSimplex 类 https://iie.fing.edu.uy/svn/SimSEE/src/rchlib/mat/umipsimplex.pas

用户:simsee_svn 密码:publico

于 2013-04-23T02:21:23.753 回答