Package oracle.rules.rl.extensions.trace
Class RuleEngineState
java.lang.Object
oracle.rules.rl.extensions.trace.RuleEngineState
RuleEngineState represents the state of the rule engine after the affects
of a trace from a decision trace. It is calculated from the all the trace
entries processed through the trace this state is associated with.
It is only as accurate as the trace is complete.
-
Method Summary
Modifier and TypeMethodDescriptionGet the list of activations on the agenda.getFact
(int factId) Get the fact trace for a fact identified its fact ID.getFacts()
Get a list of all the fact traces for the state of working memory calculated from the trace.getFactsByType
(String factType) Get a list of traces for facts by fact typeGet a set of all the fact types for the state of working memory calculated from the trace.Get the list of rules that have fired.Get the ruleset stack.Get a list of the root fact traces for the state of working memory calculated from the trace.
-
Method Details
-
getFacts
Get a list of all the fact traces for the state of working memory calculated from the trace.- Returns:
- a list of fact traces.
-
getTreeViewFacts
Get a list of the root fact traces for the state of working memory calculated from the trace. The list only includes traces for facts that are not children of another fact.- Returns:
- a list of fact traces.
-
getFactTypes
Get a set of all the fact types for the state of working memory calculated from the trace. The internal initial fact is excluded.- Returns:
- a set of fact types.
-
getFactsByType
Get a list of traces for facts by fact type- Parameters:
factType
- the fact type name.- Returns:
- a list of fact traces of type
factType
for facts in working memory calculated from the trace.
-
getFact
Get the fact trace for a fact identified its fact ID.- Parameters:
factId
- the fact ID of the desired fact.- Returns:
- the fact trace.
-
getActivations
Get the list of activations on the agenda.- Returns:
- the list of activations on the agenda.
-
getFiredRules
Get the list of rules that have fired.- Returns:
- the list of rules that have fired.
-
getRulesetStack
Get the ruleset stack.- Returns:
- the ruleset stack.
-