ayologbon / aiml-en-us-foundation-alice

Automatically exported from code.google.com/p/aiml-en-us-foundation-alice
0 stars 0 forks source link

Infinite recursion in reduction3.safe.aiml #9

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Inside reduction3.safe.aiml, there is an infinite recursion:

  <category>
    <pattern>WHAT DO YOU LIKE TO TALK ABOUT</pattern>
    <template>
      <srai>WHAT DO YOU WANT TO TALK ABOUT</srai>
    </template>
  </category>

  <category>
    <pattern>WHAT DO YOU WANT TO TALK ABOUT</pattern>
    <template>
      <srai>what do you like to talk about</srai>
    </template>
  </category>

As you can see, asking it "what do you like to talk about" goes to "what do you 
want to talk about" and then back.

Original issue reported on code.google.com by Qvist...@gmail.com on 14 Jul 2012 at 7:47