首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

drools4: Conway示范分析

2012-11-07 
drools4: Conway示例分析??????它们是用在进行下一步的变化评估中的,这3个规则中并没有直接改变Cell.CellS

drools4: Conway示例分析

    ?
  1. ?
  2. ????它们是用在进行下一步的变化评估中的,这3个规则中并没有直接改变Cell.CellState, ?
  3. ????因为CellState是用来进行评估用的,随意改变会造成无限的循环调用,因此规则使用了Phase字段来控制格子状态变化 ?
  4. ????在评估中只是改变Phase,最后根据Phase的状态完成所有格子CellState的设置,并将Phase设回EVALUATE状态 ?
  5. */??
  6. ??
  7. #?将格子的邻居中少于两个是生存状态的格子的状态设为死 ??
  8. rule?"Kill?The?Lonely"??
  9. ????ruleflow-group?"evaluate"??
  10. ????no-loop ??
  11. when ??
  12. #???A?live?cell?has?fewer?than?2?live?neighbors ??
  13. ????theCell:?Cell(liveNeighbors?<?2,?cellState?==?CellState.LIVE,?phase?==?Phase.EVALUATE) ??
  14. then ??
  15. ????theCell.setPhase(Phase.KILL); ??
  16. ????update(?theCell?); ??
  17. end ??
  18. ??
  19. #?将格子的邻居中超过3个状态是生存的格子状态设为死 ??
  20. rule?"Kill?The?Overcrowded"??
  21. ????ruleflow-group?"evaluate"??
  22. ????no-loop ??
  23. when ??
  24. #???A?live?cell?has?more?than?3?live?neighbors ??
  25. ????theCell:?Cell(liveNeighbors?>?3,?cellState?==?CellState.LIVE,?phase?==?Phase.EVALUATE) ??
  26. then ??
  27. ????theCell.setPhase(Phase.KILL); ??
  28. ????update(?theCell?); ??
  29. end ??
  30. ??
  31. #?将格子的邻居中正好有3个是生存状态的死亡格子变为生 ??
  32. rule?"Give?Birth"??
  33. ????ruleflow-group?"evaluate"??
  34. ????no-loop ??
  35. when ??
  36. #???A?dead?cell?has?3?live?neighbors ??
  37. ????theCell:?Cell(liveNeighbors?==?3,?cellState?==?CellState.DEAD,?phase?==?Phase.EVALUATE) ??
  38. then ??
  39. ????theCell.setPhase(Phase.BIRTH); ??
  40. ????update(?theCell?); ??
  41. end ??
  42. ??
  43. #?取消ruleflow-group为"calculate"的所有激活规则 ??
  44. #?clearRuleFlowGroup????-???Clears?the?RuleFlow?group,?cancelling?all?its?Activations ??
  45. #?因为在"generation"后,"calculate"组的规则还留在引擎中,如果不事先取消,就会引起无限循环 ??
  46. rule?"reset?calculate"??
  47. ????ruleflow-group?"reset?calculate"??
  48. when ??
  49. then ??
  50. ????WorkingMemory?wm?=?drools.getWorkingMemory(); ??
  51. ????wm.clearRuleFlowGroup(?"calculate"?); ??
  52. end ??
  53. ??
  54. #?将所有格子的Phase为Kill的格子状态设置为死,并将处理阶段Phase设置为DONE ??
  55. rule?"kill"??
  56. ????ruleflow-group?"kill"??
  57. ????no-loop ??
  58. when ??
  59. ????theCell:?Cell(phase?==?Phase.KILL) ??
  60. then ??
  61. ????theCell.setCellState(CellState.DEAD); ??
  62. ????theCell.setPhase(Phase.DONE);??? ??
  63. ????update(?theCell?); ??
  64. end? ??
  65. ??
  66. #?将所有格子的Phase为Birth的格子状态设置为生,并将处理阶段Phase设置为完成 ??
  67. rule?"birth"??
  68. ????ruleflow-group?"birth"??
  69. ????no-loop ??
  70. when ??
  71. ????theCell:?Cell(phase?==?Phase.BIRTH) ??
  72. then ??
  73. ????theCell.setCellState(CellState.LIVE); ??
  74. ????theCell.setPhase(Phase.DONE); ??
  75. ????update(?theCell?);?? ??
  76. end? ??
  77. ??
  78. #?根据格子的生存状态改变邻居格子中LiveNeighbors属性的计数 ??
  79. rule?"Calculate?Live"??
  80. ????ruleflow-group?"calculate"??
  81. ????lock-on-active??#?本规则更新的数据在规则流处理完成前不激活新的规则 ??
  82. when ??
  83. ????#?获得状态为生存的格子 ??
  84. ????theCell:?Cell(cellState?==?CellState.LIVE) ??
  85. ????#?找到该格子的每一个邻居 ??
  86. ????Neighbor(cell?==?theCell,?$neighbor?:?neighbor)? ??
  87. then ??
  88. ????#?为这个格子的每一个邻居的LiveNeighbors属性加1??
  89. ????$neighbor.setLiveNeighbors(?$neighbor.getLiveNeighbors()?+?1?); ??
  90. ????#?将邻居格子的处理阶段Phase设置为EVALUATE ??
  91. ????$neighbor.setPhase(?Phase.EVALUATE?);??? ??
  92. ????update(?$neighbor?); ??
  93. ????System.out.println(?"--live--"?); ??
  94. ????System.out.println(?"theCell:?row"+theCell.getRow()+"col"+theCell.getCol()); ??
  95. ????System.out.println?(?"Neighbor:?row:"+$neighbor.getRow()+"col"+$neighbor.getCol()+";LiveNeighbors:"+?$neighbor.getLiveNeighbors())?; ??
  96. end? ??
  97. ??
  98. #?类似上一规则,只是进行递减操作 ??
  99. #?对于这个规则,不太熟悉规则引擎的程序员可能会有所迷惑,所有的格子初始化状态都是DEAD ??
  100. #?那这样的话很多格子的LiveNeighbors就会变成负数了,有这样的想法是因为忽略了规则引擎不是从数据里找到规则合适的地方 ??
  101. #?而是在数据插入或发生变化时找到规则,一开始初始化所有格子为DEAD时确实激活了"Calculate?Dead"的很多实例,但是在 ??
  102. #?setPattern时首先执行了"reset?calculate",这取消了之前的所有"Calculate?Dead"的激活实例 ??
  103. #?然后运行"kill?all"规则,如果是第一次,该规则不改变任何数据也不会激发新的规则 ??
  104. #?然后是根据数据设置格子的生存状态,此时上面的"Calculate?Live"规则被激活 ??
  105. #?在后面的规则运算中每次执行"evalaute"规则组都要运行"reset?calculate"也是这个原因 ??
  106. #?然后在运行了"birth"和"kill"规则后才执行"Calculate?Live"和"Calculate?Dead"规则 ??
  107. rule?"Calculate?Dead"??
  108. ????ruleflow-group?"calculate"??
  109. ????lock-on-active?#?本规则更新的数据在规则流处理完成前不激活新的规则 ??
  110. when ??
  111. ????theCell:?Cell(cellState?==?CellState.DEAD) ??
  112. ????Neighbor(cell?==?theCell,?$neighbor?:?neighbor?) ??
  113. then ??
  114. ????$neighbor.setLiveNeighbors(?$neighbor.getLiveNeighbors()?-?1?); ??
  115. ????$neighbor.setPhase(?Phase.EVALUATE?); ??
  116. ????update(?$neighbor?);???? ??
  117. ????System.out.println(?"--dead--"?); ??
  118. ????System.out.println(?"theCell:?row"+theCell.getRow()+"col"+theCell.getCol()); ??
  119. ????System.out.println?(?"Neighbor:?row:"+$neighbor.getRow()+"col"+$neighbor.getCol()+";LiveNeighbors:"+?$neighbor.getLiveNeighbors())?; ??
  120. end? ??
  121. ??
  122. #?将所有生存状态的格子设为死亡 ??
  123. rule?"Kill?All"??
  124. ????ruleflow-group?"kill?all"??? ??
  125. ????no-loop ??
  126. when ??
  127. ????theCell:?Cell(cellState?==?CellState.LIVE) ??
  128. then ??
  129. ????theCell.setCellState(CellState.DEAD); ??
  130. ????update(?theCell?); ??
  131. end??
1 楼 ganchun-ling 2007-08-14   简直是场及时雨啊!

热点排行