Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "VIATRA/Query/DeveloperDocumentation/FeatureSetAndTesting/Rete"

(add info)
Line 1: Line 1:
 
=== Rete Visualizer ===
 
=== Rete Visualizer ===
  
The Rete algorithm is a pattern matching algorithm for implementing production rule systems. It is used to determine which of the system's rules should fire based on its data store.
+
The Rete algorithm is a pattern matching algorithm for implementing production rule systems. It is used to determine which of the system's rules should fire based on its data store. With the Rete Visualizer, you can view the Rete network to which your patterns were mapped, with the Rete nodes showing various bits of information, e.g. match count.
  
 
Usage:
 
Usage:

Revision as of 16:31, 2 April 2015

Rete Visualizer

The Rete algorithm is a pattern matching algorithm for implementing production rule systems. It is used to determine which of the system's rules should fire based on its data store. With the Rete Visualizer, you can view the Rete network to which your patterns were mapped, with the Rete nodes showing various bits of information, e.g. match count.

Usage:

  1. Go to Window | Show View | Other... and choose Rete Visualizer.
  2. Load the instance model and the pattern.
  3. Click on the pattern name to visualize it.
  4. To change the visualized Rete net, unload the pattern and load with the green start button.


Rete.png


Settings:

  • Refresh Graph
  • Clear Graph
  • Set zoom level
  • Set layout of the graph (You may change the layout by clicking the downward pointing triangle and going to the Layout menu)
    • Tree
    • SpaceTree (Eclipse dies)
    • Spring
    • Radial
    • Sugiyama

Back to the top