对于遗传算法来说,表示二进制基因组的合理方法是什么?

发布于 2024-09-27 07:26:46 字数 542 浏览 2 评论 0原文

我的上一个问题掩盖了我的经验不足,并且是基于一个假设。现在我聪明多了。 (将 1 和 0 放入字符串中?呸!我嘲笑这个建议!)

我的问题是,我应该如何编码我的基因组

在纸面上,它们看起来像这样:

01010011010110010

17 位编码(在某些情况下单独,在某些情况下作为组)要测试的参数。

要求是:

  1. 需要可扩展。目前可能有 17 个,但随着选项的添加、删除或范围的修改,这个数量可能会增加/减少。
  2. 每个位都需要单独翻转,以代表点突变。
  3. 理想情况下,应该很容易获取两个基因组的最后 X% 并将它们交换(代表交叉)。
  4. 必须有一种以明文形式表示基因组的简单方法。这里强调的是便利性而不是人类可翻译性。 (想想 URL 缩短器。)

有人有什么好主意吗? (如果有用的话,我正在使用 C#。)

My previous question belied my inexperience and was based on an assumption. Now I am much wiser. (Put 1s and 0s in a string? Pah! I laugh at the suggestion!)

My question is then, how should I encode my genomes?

On paper, they look like this:

01010011010110010

17 bits that encode (in some cases singly and in some cases as groups) the parameters to be tested.

The requirements are:

  1. Needs to be scalable. There might be 17 at the moment, but this could grow/shrink as options are added, removed or have their range modified.
  2. Each bit needs to be individually flippable, to represent spot mutations.
  3. Ideally, it should be easy to take the last X% of two genomes and switch them over (representing crossover).
  4. There must be a straightforward way of representing the genome in plaintext. Here the emphasis is on convenience rather than human translatability. (Think URL shorteners.)

Anyone got any great ideas? (If it's useful, I'm using C#.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

红墙和绿瓦 2024-10-04 07:26:46

就像 Andrey 所说,BitArray 可能是您最好的答案,它满足您的所有要求。

1) 您可以使用构造函数设置位数

2) 它允许您设置(开或关)、或、与、异或、不在位上

3) 您可以循环最后的 x% 进行交叉

4) 有一个 ToString 应该允许您输出它。

Like Andrey said, BitArray is probably your best answer, it meets all your requirements.

1) you can set the number of bits with the constructor

2) it allows you Set (on or off),Or,And,Xor, Not on bits

3) you can loop over your last x% to do crossover

4) there is a ToString that should allow you to output it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文