Advertisement
Guest User

metacat_nars_example1

a guest
Oct 31st, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. //metacat example:
  2. //a b c => a b d
  3. //w x y => ?
  4. //correct: w x z
  5.  
  6. //making them similar arcording to relative alphabet position
  7. <a <-> w>.
  8. <b <-> x>.
  9. <c <-> y>.
  10. <d <-> z>.
  11. //declaring two of them as similar
  12. <(*,a,b,c) <-> (*,a,b,d)>.
  13. //but if this is similar, to what is w,x,y similar then?
  14. <(*,w,x,y) <-> ?what>?
  15.  
  16. OUT: <(*,w,x,y) <-> (*,w,x,z)>. %1.00;0.39%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement