Uploaded image for project: 'Drools'
  1. Drools
  2. DROOLS-2455

Missing beta node sharing

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Major Major
    • None
    • None
    • core engine
    • None
    • NEW
    • NEW

      The constraints of a beta node are reordered (based on their indexability) only when the node is attached to the rete network. This means that when a second not yet attached node is compared to the former one it is found not equal (and then not shared) because of the different constraints ordering as demonstrated by the following test case

          @Test
          public void testShareBetaWithConstraintReordering() {
              String str =
                      "import " + Person.class.getCanonicalName() + ";" +
                      "rule R1 when\n" +
                      "  $s : String()\n" +
                      "  $p : Person(name != $s, age == $s.length)\n" +
                      "then\n" +
                      "end\n" +
                      "rule R2 when\n" +
                      "  $s : String()\n" +
                      "  $p : Person(name != $s, age == $s.length)\n" +
                      "then\n" +
                      "end";
      
              KieSession ksession = getKieSession( str );
      
              assertEquals( 1, ReteDumper.collectNodes( ksession ).stream().filter( BetaNode.class::isInstance ).count() );
      
              EntryPointNode epn = (( InternalKnowledgeBase ) ksession.getKieBase()).getRete().getEntryPointNodes().values().iterator().next();
              ObjectTypeNode otn = epn.getObjectTypeNodes().get( new ClassObjectType( Person.class ) );
              assertEquals( 1, otn.getSinks().length );
          }
      

            mfusco@redhat.com Mario Fusco
            mfusco@redhat.com Mario Fusco
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: