Uploaded image for project: 'Red Hat Decision Manager'
  1. Red Hat Decision Manager
  2. RHDM-523

Missing beta node sharing

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 7.1.0.GA
    • None
    • BRE
    • None
    • CR1

    Description

      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 );
          }
      

      Attachments

        Issue Links

          Activity

            People

              mfusco@redhat.com Mario Fusco
              mfusco@redhat.com Mario Fusco
              Tibor Zimányi Tibor Zimányi
              Tibor Zimányi Tibor Zimányi
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: