Advertisement
ThenThereWereThings

Entropus Protocols

May 27th, 2017
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. import emotions from subject
  2. import opinions from subject
  3. import actions from subject
  4.  
  5. class ABetterGradeOfThinking:
  6. def mentalPhylactery():
  7. for n in range (1,1000):
  8. emotions(n) = emotions
  9. opinions(n) = opinions
  10. actions(n) = actions
  11. emotions(agg) = sum(emotions(n))/1000
  12. opinions(agg) = sum(opinions(n))/1000
  13. actions(agg) = sum(actions(n))/1000
  14. if emotions(n) >>> emotions(agg):
  15. emotions(n) = emotions(agg)
  16. else:
  17. do nothing
  18. if opinions(n) >>> opinions(agg):
  19. opinions(n) = opinions(agg)
  20. else:
  21. do nothing
  22. export emotions(agg) as subject.emotions
  23. export opinions(agg) as subject.opinions
  24. if actions(n) >>> actions(agg):
  25. actions(n) = actions(agg)
  26. else:
  27. do nothing
  28.  
  29. run ABetterGradeOfThinking.mentalPhylactery()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement