D_MDO0018.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.mdo;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 进化优化器参数查询
  9. */
  10. public class D_MDO0018 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String eid;//进化器参数ID
  13. /**
  14. *进化器参数ID
  15. */
  16. public void setEid(String eid) {
  17. this.eid=eid;
  18. }
  19. /**
  20. *进化器参数ID
  21. */
  22. public String getEid() {
  23. return this.eid;
  24. }
  25. String pid;//项目ID
  26. /**
  27. *项目ID
  28. */
  29. public void setPid(String pid) {
  30. this.pid=pid;
  31. }
  32. /**
  33. *项目ID
  34. */
  35. public String getPid() {
  36. return this.pid;
  37. }
  38. String algorithm;//优化算法
  39. /**
  40. *优化算法
  41. */
  42. public void setAlgorithm(String algorithm) {
  43. this.algorithm=algorithm;
  44. }
  45. /**
  46. *优化算法
  47. */
  48. public String getAlgorithm() {
  49. return this.algorithm;
  50. }
  51. String popsize;//种群规模
  52. /**
  53. *种群规模
  54. */
  55. public void setPopsize(String popsize) {
  56. this.popsize=popsize;
  57. }
  58. /**
  59. *种群规模
  60. */
  61. public String getPopsize() {
  62. return this.popsize;
  63. }
  64. String epoch;//迭代次数
  65. /**
  66. *迭代次数
  67. */
  68. public void setEpoch(String epoch) {
  69. this.epoch=epoch;
  70. }
  71. /**
  72. *迭代次数
  73. */
  74. public String getEpoch() {
  75. return this.epoch;
  76. }
  77. String probcrossover;//交叉概率
  78. /**
  79. *交叉概率
  80. */
  81. public void setProbcrossover(String probcrossover) {
  82. this.probcrossover=probcrossover;
  83. }
  84. /**
  85. *交叉概率
  86. */
  87. public String getProbcrossover() {
  88. return this.probcrossover;
  89. }
  90. String probmut;//变异概率
  91. /**
  92. *变异概率
  93. */
  94. public void setProbmut(String probmut) {
  95. this.probmut=probmut;
  96. }
  97. /**
  98. *变异概率
  99. */
  100. public String getProbmut() {
  101. return this.probmut;
  102. }
  103. String proboperator;//交叉算子
  104. /**
  105. *交叉算子
  106. */
  107. public void setProboperator(String proboperator) {
  108. this.proboperator=proboperator;
  109. }
  110. /**
  111. *交叉算子
  112. */
  113. public String getProboperator() {
  114. return this.proboperator;
  115. }
  116. String probscale;//竞赛规模
  117. /**
  118. *竞赛规模
  119. */
  120. public void setProbscale(String probscale) {
  121. this.probscale=probscale;
  122. }
  123. /**
  124. *竞赛规模
  125. */
  126. public String getProbscale() {
  127. return this.probscale;
  128. }
  129. String strategy;//保留优选策略
  130. /**
  131. *保留优选策略
  132. */
  133. public void setStrategy(String strategy) {
  134. this.strategy=strategy;
  135. }
  136. /**
  137. *保留优选策略
  138. */
  139. public String getStrategy() {
  140. return this.strategy;
  141. }
  142. String operator;//变异算子选择
  143. /**
  144. *变异算子选择
  145. */
  146. public void setOperator(String operator) {
  147. this.operator=operator;
  148. }
  149. /**
  150. *变异算子选择
  151. */
  152. public String getOperator() {
  153. return this.operator;
  154. }
  155. String gpu;//GPU加速
  156. /**
  157. *GPU加速
  158. */
  159. public void setGpu(String gpu) {
  160. this.gpu=gpu;
  161. }
  162. /**
  163. *GPU加速
  164. */
  165. public String getGpu() {
  166. return this.gpu;
  167. }
  168. int checked;//是否选中1-选中 0-未选中
  169. /**
  170. *是否选中1-选中 0-未选中
  171. */
  172. public void setChecked(int checked) {
  173. this.checked=checked;
  174. }
  175. /**
  176. *是否选中1-选中 0-未选中
  177. */
  178. public int getChecked() {
  179. return this.checked;
  180. }
  181. }