SlideShare une entreprise Scribd logo
1  sur  48
Télécharger pour lire hors ligne
The RuleML Perspective on
Deliberation-Reaction Standards
Adrian Paschke, Harold Boley, Tara Athan
In Ontolog RulesReasoningLP: Series Session 5
9 January 2014

0
Agenda

• Reaction RuleML
• Semantic Profiles
• Semantic Metamodel and
External Ontologies (Semantic
Sorts)
• Syntactic Customization
1
The RuleML Family

Reaction

Reaction RuleML 1.0 Paper: http://link.springer.com/chapter/10.1007%2F978-3-642-32689-9_9
Reaction RuleML 1.0 Tutorial: http://www.slideshare.net/swadpasc/reaction-ruleml-ruleml2012paschketutorial
RuleML 1.0 Paper http://link.springer.com/chapter/10.1007/978-3-642-16289-3_15
RuleML Overview Slides: http://cs.unb.ca/~boley/talks/RuleML-Overarching-Talk.pdf

2
Reaction Rules: Four Sub-branches
• PR Production Rules
(Condition-Action rules)
• ECA Event-Condition-Action (ECA) rules
• CEP Rule-based Complex Event Processing (complex
event processing reaction rules, (distributed) event
messaging reaction rules, query reaction rules, etc.)
• DR and KR Knowledge Representation AI Reasoning
with Temporal/Event/Action/Situation/
Transition/Process Logics and Calculi

3
Quick Overview: Reaction RuleML Dialects

* + variants and alternatives

• Spatio-Temporal Derivation RuleML (if-then)*
– Time, Spatial, Interval

• KR RuleML (if-then or on-if-do) *
– Situation, Happens(@type), Initiates, Terminates, Holds, fluent

• Production RuleML (if-do) *
– Assert, Retract, Update, Action

• ECA RuleML (on-if-do) *
– Event, Action, + (event / action algebra operators)

• CEP (arbitrary combination of on, if, do)
– Receive, Send, Message
4
(Reaction) Rules: Specializable Syntax
<Rule @key @keyref @style>
<meta> <!-– descriptive metadata of the rule -->
</meta>
Info, Life
<scope> <!–- scope of the rule e.g. a rule module --> </scope>
Cycle Mgt.
<evaluation> <!-- intended semantics -->
</evaluation>
Interface
<signature> <!– rule signature -->
</signature>
<qualification> <!–- e.g. qualifying rule metadata, e.g.
priorities, validity, strategy -->
</qualification>
<quantification> <!-- quantifying rule declarations,
e.g. variable bindings -->
</quantification>
<oid> <!– object identifier -->
</oid>
<on>
<!–- event part -->
</on>
<if>
<!–- condition part -->
</if>
Imple<then> <!-– (logical) conclusion part -->
</then>
mentation
<do>
<!-- action part -->
</do>
<after> <!–- postcondition part after action,
e.g. to check effects of execution -->
</after>
<else> <!–- (logical) else conclusion -->
</else>
<elsedo> <!-- alternative/else action,
e.g. for default handling -->
</elsedo>
</Rule>
5
Reaction RuleML – Example Rule Types
• Derivation Rule:
(temporal/event/action/situation
reasoning)

• Production Rule:

• Trigger Rule:

• ECA Rule:

<Rule style="reasoning">
<if>...</if>
<then>...</then>
</Rule>
<Rule style="active">
<if>...</if>
<do>...</do>
</Rule>
<Rule style="active"> >
<on>...</on>
<do>...</do>
</Rule>
<Rule style="active">
<on>...</on>
<if>...</if>
<do>...</do>
</Rule>

6
Agenda

• Reaction RuleML
• Semantic Profiles
• Semantic Metamodel and
External Ontologies (Semantic
Sorts)
• Syntactic Customization
7
Integration of Semantic Profiles
1.

Include/Import external Semantic Profile

<xi:include href="../../profiles/SituationCalculusProfile.rrml" xpointer="xpointer(/RuleML/*)"/>
<evaluation>
<Profile keyref="&ruleml;ReifiedClassicalSituationCalculus" />
</evaluation>
2.

Reference pre-defined Semantic Profile as profile type

<evaluation>
<Profile type="&rif;RDFS“ iri="http://www.w3.org/ns/entailment/RDFS"/>
</evaluation>
3.

Reference published
external semantic profiles,
e.g. RIF, OWL, profiles …

Locally defined Semantic Profile

<Assert>
<evaluation>
<Profile key="&ruleml;ReifiedClassicalSituationCalculus" >
<formula><Rulebase > ... RuleML definition… </Rulebase></formula>
<content> … xs:any XML content, e.g. RIF, Common Logic XML… </content>
</Profile>
</evaluation>
<Rulebase>
Note: also other non
<Rule> … </Rule>
RuleML content models are
<Rule> … </Rule>
supported
</Rulebase>
</Assert>

8
Example – Reified Situation Calculus Axioms
(1) 8(A1, A2, S1, S2) (do(A1,S1) = do(A2,S2))  (A1 = A2)
(2) 8(S1, S2, A) (S1 < do(A,S2)) ´ (S1 <= S2)
(3) 8(S1, S2) (S1 6 S2) ´ (S1 < S2)  (S1 = S2)
(4) 8(S1, S2) (S1 < S2)  ¬ (S2 < S1)
(5) 8(S, F) [holds(F,s0)  (8(A) (holds(F,S) 
holds(F,do(A,S)))]  holds(F,S)
(6) ¬S < s0
…

9
Example: Axiomatization of Situation Calculus Profile in RuleML
<Assert>
Profile key can be
<evaluation>
referenced by keyref
<Profile key="&ruleml;ReifiedSituationCalculus" >
<Rulebase key="&ruleml;ReifiedSituationCalculusBasicAxioms" >
<!-- Forall(A1, A2, S1, S2) (do(A1,S1) = do(A2,S2)) => (A1 = A2) -->
<Rule key=„&ruleml;SituationCalculusBasicAxiom1">
<quantification> <Forall>
<declare><Var>A1</Var></declare> <declare><Var>A2</Var></declare>
<declare><Var>S1</Var></declare> <declare><Var>S2</Var></declare>
</Forall> </quantification>
<if>
<Equal>
<Situation>
<Do> <Action><Var>A1</Var></Action><Situation><Var>S1</Var></Situation> </Do>
</Situation>
<Situation>
<Do> <Action><Var>A2</Var></Action><Situation><Var>S2</Var></Situation></Do>
</Situation>
</Equal>
</if>
<then>
<Equal> <Action><Var>A1</Var></Action> <Action><Var>A2</Var></Action> </Equal>
</then>
</Rule>

….
</Profile>
</evaluation>
</Assert>

10
Complex Event Processing – Semantic Profiles
(defined in <evaluation> semantic profiles)
1.

2.

–
–
–
–
–

3.

4.

–
–
–
–
–
–
–

Definition
Definition of event/action pattern e.g. by event algebra
Based on declarative formalization or procedural implementation
Defined over an atomic instant or an interval of time, events/actions, situation, transition
etc.

Selection
Defines selection function to select one event from several occurred events
(stored in an event instance sequence e.g. in memory, database/KB) of a particular type,
e.g. “first”, “last”
Crucial for the outcome of a reaction rule, since the events may contain different
(context) information, e.g. different message payloads or sensing information

Consumption
Defines which events are consumed after the detection of a complex event
An event may contribute to the detection of several complex events, if it is not consumed
Distinction in event messaging between “multiple receive” and “single receive”
Events which can no longer contribute, e.g. are outdated, should be removed

Execution
Actions might have an internal effect i.e. change the knowledge state leading to state
transition from (pre-)condition state to post-condition state
The effect might be hypothetical (e.g. a hypothetical state via a computation) or
persistent (update of the knowledge base),
Actions might have an external side effect
11
Example - Reaction Rules with Semantic Profiles
<Rule style="active">
<evaluation>
<Profile> e.g. selection and consumptions policies </Profile>
</evaluation>
<signature>
<Event key="#ce1">
… event pattern definition (for event detection)
</Event>
</signature>

<on>
<Event keyref="#ce1"/> <!– use defined event pattern for detecting events -->
</on>
<if>
…
</if>
<do>
<Assert safety="transactional"> <!-- transactional update -->
<formula>
<Atom>
….
</Atom>
</formula>
</Assert>
</do>
</Rule>

Interface
(semantic profile +
event pattern
signature for event
processing /
detection)

Implementation
(reaction rule
triggered by event
detection)

12
Example - Semantic LP Profiles

13
Semantic Layering - Example LP Semantic Profiles


DWFS
O-SEM 

WFS


COMP



GDWFS

COMP3





WFS+



 GWFS

DSTABLE
STABLE



REG-SEM
PERFECT

WPERFECT
MsuppP
WGCWA

GCWA
MP

A semantic SEM‘ extends a semantic SEM:
SEM‘ > SEM iff 8 (P, F) SEM(P) |= F  SEM‘(P) |= F
Semantic Profiles for Evaluation
• A semantics SEM‘ extends SEM for rule program P iff all
formula F which are true in SEM(P) are also true in
SEM‘(P), but in SEM‘(P) more formula can be true or
false than with SEM(P).
• SEM' is defined for a class of programs that strictly
includes the class of programs with the semantics SEM
• SEM' coincides with SEM for all programs of the class of
programs for which SEM is defined
A semantic profile SEM’ (= intended evaluation
semantics of the inference engine) can be used for all
15
programs (or scoped modules) with SEM(P) 6 SEM’(P)
Example: Use of Semantic LP Profiles for Interpretation
<-- rule interface with two alternative interpretation semantics and a signature.
The interface references the implementation identified by the corresponding key -->
<Rule key=“#r1">
<evaluation index="1">
<!-- WFS semantic profile -->
<Profile type="&ruleml;Well-Founded-Semantics" />
</evaluation>
<evaluation index="2">
<!-- alternative ASS semantic profile define in the metamodel -->
<Profile type="&ruleml;Answer-Set-Semantics" />
</evaluation>
<!-- the signature defines the queryable head of the backward-reasoning rule -->
<signature>
<Atom><Rel>likes</Rel><Var mode="+"/><Var mode=“-"/></Atom>
</signature>
</Rule>
<!-- implementation of rule 1 which is interpreted either by WFS or by ASS semantics
and only allows queries according to it's signature definition. -->
<Rule keyref=“#r1" style="reasoning">
<if>... </if>
<then>
<Atom><Rel>likes</Rel><Var>X</Var><Var>Y</Var></Atom>
</then>
</Rule>

Interface
with
evaluation
semantics
and
public rule
signature

Implemen
tation

16
Example – RIF SWC Profiles
Profile

IRI of the Profile Model

Satisfiability

Entailment

Simple

http://www.w3.
RIF-Simpleorg/ns/entailme
model
nt/Simple

satisfiability

RIF-Simpleentailment

RDF

http://www.w3.
org/ns/entailme RIF-RDF-model
nt/RDF

RIF-RDFsatisfiability

RIF-RDFentailment

RDFS

http://www.w3.
org/ns/entailme RIF-RDFS-model
nt/RDFS

RIF-RDFSsatisfiability

RIF-RDFSentailment

D

http://www.w3.
org/ns/entailme RIF-D-model
nt/D

RIF-Dsatisfiability

RIF-Dentailment

OWL Direct

http://www.w3.
RIF-OWL Directorg/ns/entailme
model
nt/OWL-Direct

RIF-OWL Directsatisfiability

RIF-OWL Directentailment

Simple < RDF < RDFS < D < OWL RDF-Based
Example:

<evaluation>
<Profile type="&rif;RDFS“ iri="http://www.w3.org/ns/entailment/RDFS"/> 17
</evaluation>
Semantic Profiles in Nested Program Scopes
<Assert key="#module1”>
<evaluation><Profile> ...SEM’’… </Profile><evaluation>
<Rulebase key="#innermodule1.1">
<evaluation><Profile> ...SEM’… </Profile><evaluation>
<Rule key=“#rule1”>
<evaluation><Profile> ...SEM… </Profile><evaluation>
</Rule>
<Rule key=“#rule2”>
…
</Rule>
</Rulebase>
<Rulebase key="#innermodule1.2"> … </Rulebase>

Outer
Scope

Inner
Module
Scope

Rule
Scope
Rule
Scope

Inner
Module
Scope

</Assert>

SEM‘‘(#module1) > SEM‘(#innermodule1.1) > SEM(#rule1)
SEM(#rule2) = SEM‘‘(#module1)
SEM‘(#innermodule1.2) = SEM‘‘(#module1)
18
Dynamic Program Views with Scopes and Guards
<Assert key="#module1”>
<meta> <!-- descriptive metadata -->
<Atom><Rel iri="dc:creator"/><Ind>Adrian Paschke</Ind></arg></Atom>
</meta>
<qualification> <!-- qualifying metadata -->
<Atom> <!-- the module is valid for one year from 2011 to 2012 -->
<Rel>valid</Rel>
<Interval type="&ruleml;TimeInstant">
<Time type="&ruleml;TimeInstant"><Data xsi:type="xs:date">2011-01-01</Data></Time>
<Time type="&ruleml;TimeInstant"><Data xsi:type="xs:date">2012-01-01</Data></Time>
</Interval>
</Atom>
</qualification>
<Rulebase key="#innermodule1.1">
<!– the rule base scopes apply to all knowledge in the rule base -->
<scope> <!– scope : only knowledge authored by „Adrian Paschke“ -->
<Atom><Rel iri="dc:creator"/><Ind>Adrian Paschke</Ind></arg></Atom>
Outer
</scope>
Scope
<scope> <!– scope : only valid knowledge; validity value will be bound to variable -->
<Atom><Rel>valid</Rel><Var>Validity</Var></Atom>
</scope>
<Rule key=“#rule1”>
Inner
<scope> <Atom><Rel>source</Rel><Ind>./module1.prova</Ind></Atom></scope>
Scope
<guard> <!-- guard on the validity: “current date during validity of module1”
+
<Operator type="&ruleml;During"><Expr iri="…getDate()“/><Var>Validity</Var></Operator> Guard
</guard>
<if> … </if> <then> </then>
Note: Local functions are
</Rule>
interpreted with the intended
</Rulebase>
semantics of the scope
19
</Assert>
Test Cases for Self-validating Rule Bases
•

Test Cases constrain the possible models and approximate the intended models of
the rule base
–

Queries are used to test the rule base

Test Cases (+,-)
inconsistent:

•

Partial
Model

Test Cases (+,-)
consistent:

A test case is defined by T := {X, A, N}, where
– X  L assertion base (input data, e.g. facts )
– A L
a formula denoting a test query
Intended
Model

–

•

+

+
+

+ + +

Intended
Model

-

-

N := + , – a positive or negative label

Semantics
M0 |TC (X, A, ) iff  m  M0 : m   (Mod(X),R)  m Mod( A)
M0 |TC (X, A, ) iff  m  M0 : m   (Mod(X),R)  m Mod( A)

–
–
–

|=TC compatibility relation
Mod association function between sets of formulas and sets of models
Σ model selection function

A  CR (X ) for T:={X, A, +} and A  CR (X ) for T:={X,A,-}
–

CR(X) deductive closure of X. Decidable inference operator based on formal proofs
Rule Markup for Test Cases / Test Suites

<TestSuite ruleBase="SampleBase.xml">
<Test id="ID001" purpose="...">
<Assert><formula>
<And>
<Atom>
<Rel>parent</Rel>
<Ind>John</Ind>
<Ind>Mary</Ind>
</Atom>
</And>
</formula></Assert>
<TestItem expectedAnswer="yes">
<Query><formula>
<Atom closure="universal">
<Rel>uncle</Rel>
<Ind>Mary</Ind>
<Var>Nephew</Var>
</Atom>
</formula></Query>
<expectedResults>
<VariableValuePair>
<Var>Nephew</Var>
<Ind>Tom</Ind>
</VariableValuePair>
<VariableValuePair>
<Var>Nephew</Var>
<Ind>Irene</Ind>
</VariableValuePair>
</expectedResults>
</TestItem>
<InferenceEngineSemantics><Profile
=“&ruleML;MinimalHerbrandSemantics”/></InferenceEngineSemantics>
</Test></TestSuite>
Testing Semantic Properties
• Entailment Tests for Classical Logics
– right weakening, reflexivity, and, or, left logical
equivalence, cautious monotony, cut, rationality,
negation rat., disjunction rat., …

• Entailment Tests for Skeptical Logics
– cumulativity, rationality, …

• Weak Semantic Properties Tests
– elimination of tautologies, generalized principle of
partial evaluation, positive/negative reduction,
elimination of non-minimal rules, independence,
relevance, …
22
Example – Cautious Montony Test
P:

a
b
c
c

<<<<-

not b
not a
not c
a

P’:

a
b
c
c
c

<<<<-

not b
not a
not c
a

T:{a=>true,c=>true}

• STABLE(P) |=TC {a, not b, c}, i.e. T succeeds.
• STABLE(P’) |=TC {not a, b, c}, i.e. T fails.
Test Case: STABLE does not fulfil not cautious monotony
23
Agenda

• Reaction RuleML
• Semantic Profiles
• Semantic Metamodel and
External Ontologies (Semantic
Sorts)
• Syntactic Customization
24
RuleML Types (Sorted Logic)
• Types (sorts) can be assigned by using the
@type attribute
• External vocabularies / ontologies define
types, e.g.,
<Var type="&vo;Vehicle">Car</Var>
<Ind iri="&vo;Corolla" type="&vo;Sedan"/>

• Semantics defined / linked by Semantic
Profile, e.g. order-sorted logic using RDFS or
OWL entailment profiles
Reaction RuleML Examples with Types from
RuleML Metamodel and External Ontologies
<Quantifier type=“&ruleml;Forall"> == <Forall>
<Operator type="&ruleml;And"> == <And>
<Operator type="&ruleml;Conjunction"> == <Conjunction>
<Negation type="&ruleml;InflationaryNegation"> == <Naf>
<Action type="&ruleml;Assert"> == <Assert>
<Action type="&ruleml;Retract"> == <Retract>
<Event type="&ruleml;SimpleEvent"> == <Atom> … </Atom>
<Event type="ibm:CommonBaseEvent"> == IBM CBE
<Operator type="snoop:Sequence"> == Snoop Algebra
== <Operator type="&ruleml;Sequence"> == <Sequence>
<Ind iri="person.xml#xpointer(//Person/LastName[1]/text())"/>
<Action iri="BPEL.xml#xpointer(//invoke[@name=checkHotel])">
26
Reaction RuleML Metamodel
Top Level Ontologies
General concepts such as space, time, event, action and their properties and relations

Spatio
Ontology

Action
Ontology

Temporal
Ontology

Event
Ontology

Vocabularies related
to specific domains
by specializing the
concepts introduced
in the top-level
ontology

Situation
Ontology

Task
Activities
Ontologies

Domain
Ontologies

Specific
user/application
ontologies

Process
Ontology

Application
Ontologies

Agent
Ontology

Vocabularies related
to generic tasks or
activities by
specializing the
concepts introduced in
the top-level ontology

E.g. ontologies describing roles
played by domain entities while
perfoming application activities

27
Time Top Ontology Metamodel

Time
Time Instant

Time Types

Time Interval

28
Interval Top Ontology Metamodel

Interval
Types

Interval
Empty
Interval

Degene
rated
Interval

Left Closed
Right Open
Interval

Left Open
Right Closed
Interval

Left
Open
Interval

Left
Closed
Interva
l

Right
Closed
Interva
l

Right
Open
Interva
l

29
Event Top Ontology Metamodel

Event
Simple Event

Event
Types

Complex Event

30
Action Top Ontology Metamodel

Action
Atomic Action

Action
Types

Complex Action

31
Situation Top Ontology Metamodel

Situation
Heterogeneous
Situation

Fluent

has
property

has
property

Situation
Types

Homogenous
Situation
Domain ontologies

Dynamic
Change
Situation

Time
Frame
Situation

Frequency
Situation

State
Situation

Process
Situation

Iterative
Situation

Habitual
Situation

32
Example: Situation Top Ontology Metamodel
Metadata
Properties

Fluent
Properties
hasValue

Situation
Properties

(time, location, participants, …)
use the other
top ontologies

hasProperties

Situation
Content

Situation
Descriptions

hasContent

Situation

Situation
Types

Heterogeneous
Situation

Homogenous
Situation
Domain ontologies

Dynamic
Change
Situation
TrafficLight
Changes

Time
Frame
Situation

Frequency
Situation

Within5
Minutes

Rings3
Times

State
Situation

LaysOn
TheFloor

Process
Situation

He
Runs

He
Coughs

Iterative
Situation

He
Smokes

Habitual
Situation

Situation
Individuals
33
Example - Event MetaModel
(for defining Event Types as Instances of the MetaModel Event Class)
Defined
Event
Types

Event Class
Definition

34
Extended Event Meta Model Ontology
(with computational properties and complex value definitions)

35
Example - Typed Complex Event Pattern Definition
<Event key=“#ce2" type="&ruleml;ComplexEvent">
<signature> <!-- pattern signature definition -->
<Sequence>
<signature>
<Event type="&ruleml;SimpleEvent">
<signature><Event>...event_A...</Event></signature>
</Event>
</signature>
<signature><Event type="&ruleml;ComplexEvent" keyref="ce1"/></signature>
<signature>
<Event type="cbe:CommonBaseEvent" iri="cbe.xml#xpointer(//CommonBaseEvent)"/>
</signature>
</Sequence>
</signature>
</Event>

Event
Pattern
defining
Event
Templates
signature

<Event key=“#ce1">
<signature> <!-- event pattern signature -->
<Concurrent>
<Event><meta><Time>...t3</Time></meta><signature>...event_B</signature></Event>
<Event><meta><Time>...t3</Time></meta><signature>...event_C</signature></Event>
</Concurrent>
</signature>
</Event>
<Event key=“#e1” keyref=“#ce2”><content>…</content></Event>

Event
36
Instance
Agenda

• Reaction RuleML
• Semantic Profiles
• Semantic Metamodel and
External Ontologies (Semantic
Sorts)
• Syntactic Customization
37
RuleML Sublanguages Customized by
MYNG as Relax NG Schemas (1)

38
RuleML Sublanguages Customized by
MYNG as Relax NG Schemas (2)

39
Example
Derivation RuleML Expressiveness Layering
Extended Disjunctive LP
Extended LP

Normal Disjunctive LP
Stratified Disjunctive LP

Definite Disjunctive LP

Normal LP

Stratified LP

Definite LP
Example - Production RuleML Layering

Normal Disjunctive PR with (non-stratified) iNeg
Stratified Disjunctive PR
with iNeg

Normal PR with (nonstratified) iNeg

Definite Disjunctive PR

Stratified PR with iNeg

Definite PR
Example
ECA and CEP RuleML Expressiveness Layering
Serial Derivation Rules with
local nested Reaction Rules

Messaging RRs (serial reaction
rules for workflow-style execution
in branching logics)

Active Reaction Rules with Alternative
Actions (If-do-elsedo style)
Active ECAP RRs
Active ECA RRs

Trigger Reaction Rules (EA
RRs)
Summary
• Fine grained syntactic language configuration
(expressiveness) with MYNG (as Relax NG
schemas)
• Intended semantics defined by Semantic
Profiles
– Semantic Test Cases for verification and validation

• Sorted Logic supports Types defined in external
semantic ontologies and Meta Model
vocabulary

• Towards joint standards for Deliberation,
Reaction Rules

43
Thank you !
Questions?
Acknowledgement to the members of the Reaction RuleML
technical group

44

44
RuleML Online Community
• RuleML MediaWiki (http://wiki.ruleml.org)
• Mailing lists (http://ruleml.org/mailman/listinfo)
• Technical Groups
(http://wiki.ruleml.org/index.php/Organizational_Structure#Technical_Groups)
–
–
–
–
–

Uncertainty Reasoning
Defeasible Logic
Reaction Rules
Multi-Agent Systems
…

• RuleML sources are hosted on Github
(https://github.com/RuleML)
45
•

Further Reading – (Reaction) RuleML

Harold Boley, Adrian Paschke, Omair Shafiq: RuleML 1.0: The Overarching Specification of Web Rules.
RuleML 2010: 162-178
http://dx.doi.org/10.1007/978-3-642-16289-3_15
http://www.cs.unb.ca/~boley/talks/RuleML-Overarching-Talk.pdf

•

Adrian Paschke, Harold Boley, Zhili Zhao, Kia Teymourian and Tara Athan: Reaction RuleML 1.0:
Standardized Semantic Reaction Rules, 6th International Conference on Rules (RuleML 2012),
Montpellier, France, August 27-31, 2012
http://link.springer.com/chapter/10.1007%2F978-3-642-32689-9_9
http://www.slideshare.net/swadpasc/reaction-ruleml-ruleml2012paschketutorial

•

•

Adrian Paschke: Tutorial on Semantic Complex Event Processing and Reaction RuleML, atDemAAL 2013 Dem@Care Summer School on Ambient Assisted Living, 16-20 September 2013, Chania, Crete, Greece
http://www.slideshare.net/swadpasc/dem-aal-semanticceppaschke
Paschke, A., Boley, H.: Rule Markup Languages and Semantic Web Rule Languages, in Handbook of
Research on Emerging Rule-Based Languages and Technologies: Open Solutions and Approaches, IGI
Publishing, ISBN:1-60566-402-2, 2009
http://www.igi-global.com/chapter/rule-markup-languages-semantic-web/35852
Sample chapter: http://nparc.cisti-icist.nrc-cnrc.gc.ca/npsi/ctrl?action=rtdoc&an=18533385

•

Paschke, A., Boley, H.: Rules Capturing Event and Reactivity, in Handbook of Research on Emerging RuleBased Languages and Technologies: Open Solutions and Approaches, IGI Publishing, ISBN:1-60566-4022, 2009
http://www.igi-global.com/book/handbook-research-emerging-rule-based/465
Sample Chapter: http://nparc.cisti-icist.nrc-cnrc.gc.ca/npsi/ctrl?action=rtdoc&an=16435934&article=0&fd=pdf

•

Adrian Paschke and Harold Boley: Rule Responder: Rule-Based Agents for the Semantic-Pragmatic Web,
in Special Issue on Intelligent Distributed Computing in International Journal on Artificial Intelligence
Tools (IJAIT), V0l. 20,6, 2011
https://www.researchgate.net/publication/220160498
Further Reading – RuleML Test Cases
•

Adrian Paschke: Verification, Validation, Integrity of Rule Based Policies and Contracts in the
Semantic Web, 2nd International Semantic Web Policy Workshop (SWPW'06), Nov. 5-9, 2006,
Athens, GA, USA
http://ceur-ws.org/Vol-207/paper01.pdf

•

Adrian Paschke, Jens Dietrich, Adrian Giurca, Gerd Wagner, Sergey Lukichev: On Self-Validating Rule
Bases, Proceedings of 2nd International Workshop on Semantic Web Enabled Software Engineering
(SWESE 2006), Athens, Georgia, USA (6th November 2006), November 2006
http://www.rewerse.net/publications/rewerse-description/REWERSE-RP-2006-166.html
http://km.aifb.kit.edu/ws/swese2006/final/paschke_full.pdf
http://www.researchgate.net/publication/228359327_On_self-validating_rule_bases

•

Adrian Paschke and Jens Dietrich: On the Test-Driven Development and Validation of Business Rules.
ISTA 2005: 31-48
http://subs.emis.de/LNI/Proceedings/Proceedings63/article3604.html

•

Adrian Paschke: The ContractLog Approach Towards Test-driven Verification and Validation of Rule
Bases - A Homogeneous Integration of Test Cases and Integrity Constraints into Evolving Logic
Programs and Rule Markup Languages (RuleML), in IBIS 10/2005
http://rbsla.ruleml.org/docs/ContractLog_VVI.pdf

Contenu connexe

Similaire à The RuleML Perspective on Reaction Rule Standards

Sfeldman performance bb_worldemea07
Sfeldman performance bb_worldemea07Sfeldman performance bb_worldemea07
Sfeldman performance bb_worldemea07Steve Feldman
 
Drools & jBPM Info Sheet
Drools & jBPM Info SheetDrools & jBPM Info Sheet
Drools & jBPM Info SheetMark Proctor
 
B2 2006 sizing_benchmarking
B2 2006 sizing_benchmarkingB2 2006 sizing_benchmarking
B2 2006 sizing_benchmarkingSteve Feldman
 
B2 2006 sizing_benchmarking (1)
B2 2006 sizing_benchmarking (1)B2 2006 sizing_benchmarking (1)
B2 2006 sizing_benchmarking (1)Steve Feldman
 
Oracle Sql Tuning
Oracle Sql TuningOracle Sql Tuning
Oracle Sql TuningChris Adkin
 
Semantically-Enabled Business Process Management
Semantically-Enabled Business Process ManagementSemantically-Enabled Business Process Management
Semantically-Enabled Business Process ManagementAdrian Paschke
 
Policy Guided Fulfillmentof Murano Applications
Policy Guided Fulfillmentof Murano ApplicationsPolicy Guided Fulfillmentof Murano Applications
Policy Guided Fulfillmentof Murano Applicationsrpospisil
 
JBoss Drools and Drools Fusion (CEP): Making Business Rules react to RTE
JBoss Drools and Drools Fusion (CEP): Making Business Rules react to RTEJBoss Drools and Drools Fusion (CEP): Making Business Rules react to RTE
JBoss Drools and Drools Fusion (CEP): Making Business Rules react to RTEtsurdilovic
 
Mine Your Simulation Model: Automated Discovery of Business Process Simulatio...
Mine Your Simulation Model: Automated Discovery of Business Process Simulatio...Mine Your Simulation Model: Automated Discovery of Business Process Simulatio...
Mine Your Simulation Model: Automated Discovery of Business Process Simulatio...Marlon Dumas
 
UiPath Development Best Practices.pptx
UiPath Development Best Practices.pptxUiPath Development Best Practices.pptx
UiPath Development Best Practices.pptxApurbaSamanta9
 
Droolsand Rule Based Systems 2008 Srping
Droolsand Rule Based Systems 2008 SrpingDroolsand Rule Based Systems 2008 Srping
Droolsand Rule Based Systems 2008 SrpingSrinath Perera
 
Oracle database performance diagnostics - before your begin
Oracle database performance diagnostics  - before your beginOracle database performance diagnostics  - before your begin
Oracle database performance diagnostics - before your beginHemant K Chitale
 
Rules Programming tutorial
Rules Programming tutorialRules Programming tutorial
Rules Programming tutorialSrinath Perera
 
SLALOM Webinar Final Technical Outcomes Explanined "Using the SLALOM Technica...
SLALOM Webinar Final Technical Outcomes Explanined "Using the SLALOM Technica...SLALOM Webinar Final Technical Outcomes Explanined "Using the SLALOM Technica...
SLALOM Webinar Final Technical Outcomes Explanined "Using the SLALOM Technica...Oliver Barreto Rodríguez
 
Fundamental test process 1
Fundamental test process 1Fundamental test process 1
Fundamental test process 1Bima Alvamiko
 
Database performance management
Database performance managementDatabase performance management
Database performance managementscottaver
 
Introduction to Machine Learning and Data Science using Autonomous Database ...
Introduction to Machine Learning and Data Science using Autonomous Database  ...Introduction to Machine Learning and Data Science using Autonomous Database  ...
Introduction to Machine Learning and Data Science using Autonomous Database ...Sandesh Rao
 
Yapp methodology anjo-kolk
Yapp methodology anjo-kolkYapp methodology anjo-kolk
Yapp methodology anjo-kolkToon Koppelaars
 
Pega Cssa Training With Real-time Project @santhoopega123@gmail.com&Whatsup@8...
Pega Cssa Training With Real-time Project @santhoopega123@gmail.com&Whatsup@8...Pega Cssa Training With Real-time Project @santhoopega123@gmail.com&Whatsup@8...
Pega Cssa Training With Real-time Project @santhoopega123@gmail.com&Whatsup@8...Santhoo Vardan
 

Similaire à The RuleML Perspective on Reaction Rule Standards (20)

Sfeldman performance bb_worldemea07
Sfeldman performance bb_worldemea07Sfeldman performance bb_worldemea07
Sfeldman performance bb_worldemea07
 
Drools & jBPM Info Sheet
Drools & jBPM Info SheetDrools & jBPM Info Sheet
Drools & jBPM Info Sheet
 
B2 2006 sizing_benchmarking
B2 2006 sizing_benchmarkingB2 2006 sizing_benchmarking
B2 2006 sizing_benchmarking
 
B2 2006 sizing_benchmarking (1)
B2 2006 sizing_benchmarking (1)B2 2006 sizing_benchmarking (1)
B2 2006 sizing_benchmarking (1)
 
Oracle Sql Tuning
Oracle Sql TuningOracle Sql Tuning
Oracle Sql Tuning
 
Semantically-Enabled Business Process Management
Semantically-Enabled Business Process ManagementSemantically-Enabled Business Process Management
Semantically-Enabled Business Process Management
 
Policy Guided Fulfillmentof Murano Applications
Policy Guided Fulfillmentof Murano ApplicationsPolicy Guided Fulfillmentof Murano Applications
Policy Guided Fulfillmentof Murano Applications
 
JBoss Drools and Drools Fusion (CEP): Making Business Rules react to RTE
JBoss Drools and Drools Fusion (CEP): Making Business Rules react to RTEJBoss Drools and Drools Fusion (CEP): Making Business Rules react to RTE
JBoss Drools and Drools Fusion (CEP): Making Business Rules react to RTE
 
Mine Your Simulation Model: Automated Discovery of Business Process Simulatio...
Mine Your Simulation Model: Automated Discovery of Business Process Simulatio...Mine Your Simulation Model: Automated Discovery of Business Process Simulatio...
Mine Your Simulation Model: Automated Discovery of Business Process Simulatio...
 
UiPath Development Best Practices.pptx
UiPath Development Best Practices.pptxUiPath Development Best Practices.pptx
UiPath Development Best Practices.pptx
 
Droolsand Rule Based Systems 2008 Srping
Droolsand Rule Based Systems 2008 SrpingDroolsand Rule Based Systems 2008 Srping
Droolsand Rule Based Systems 2008 Srping
 
Content Modeling Behavior
Content Modeling BehaviorContent Modeling Behavior
Content Modeling Behavior
 
Oracle database performance diagnostics - before your begin
Oracle database performance diagnostics  - before your beginOracle database performance diagnostics  - before your begin
Oracle database performance diagnostics - before your begin
 
Rules Programming tutorial
Rules Programming tutorialRules Programming tutorial
Rules Programming tutorial
 
SLALOM Webinar Final Technical Outcomes Explanined "Using the SLALOM Technica...
SLALOM Webinar Final Technical Outcomes Explanined "Using the SLALOM Technica...SLALOM Webinar Final Technical Outcomes Explanined "Using the SLALOM Technica...
SLALOM Webinar Final Technical Outcomes Explanined "Using the SLALOM Technica...
 
Fundamental test process 1
Fundamental test process 1Fundamental test process 1
Fundamental test process 1
 
Database performance management
Database performance managementDatabase performance management
Database performance management
 
Introduction to Machine Learning and Data Science using Autonomous Database ...
Introduction to Machine Learning and Data Science using Autonomous Database  ...Introduction to Machine Learning and Data Science using Autonomous Database  ...
Introduction to Machine Learning and Data Science using Autonomous Database ...
 
Yapp methodology anjo-kolk
Yapp methodology anjo-kolkYapp methodology anjo-kolk
Yapp methodology anjo-kolk
 
Pega Cssa Training With Real-time Project @santhoopega123@gmail.com&Whatsup@8...
Pega Cssa Training With Real-time Project @santhoopega123@gmail.com&Whatsup@8...Pega Cssa Training With Real-time Project @santhoopega123@gmail.com&Whatsup@8...
Pega Cssa Training With Real-time Project @santhoopega123@gmail.com&Whatsup@8...
 

Plus de Adrian Paschke

Tutorial - Introduction to Rule Technologies and Systems
Tutorial - Introduction to Rule Technologies and SystemsTutorial - Introduction to Rule Technologies and Systems
Tutorial - Introduction to Rule Technologies and SystemsAdrian Paschke
 
Loomp - Web 3.0 Collaborative Semantic Content Annotator
Loomp - Web 3.0 Collaborative Semantic Content AnnotatorLoomp - Web 3.0 Collaborative Semantic Content Annotator
Loomp - Web 3.0 Collaborative Semantic Content AnnotatorAdrian Paschke
 
The Nature of Information
The Nature of InformationThe Nature of Information
The Nature of InformationAdrian Paschke
 
Semantic Web from the 2013 Perspective
Semantic Web from the 2013 PerspectiveSemantic Web from the 2013 Perspective
Semantic Web from the 2013 PerspectiveAdrian Paschke
 
PragmaticWeb 4.0 - Towards an active and interactive Semantic Media Web
PragmaticWeb 4.0 - Towards an active and interactive Semantic Media WebPragmaticWeb 4.0 - Towards an active and interactive Semantic Media Web
PragmaticWeb 4.0 - Towards an active and interactive Semantic Media WebAdrian Paschke
 
Towards an Ubiquitous Pragmatic Web
Towards an Ubiquitous Pragmatic WebTowards an Ubiquitous Pragmatic Web
Towards an Ubiquitous Pragmatic WebAdrian Paschke
 
SemTecBiz 2012: Corporate Semantic Web
SemTecBiz 2012: Corporate Semantic WebSemTecBiz 2012: Corporate Semantic Web
SemTecBiz 2012: Corporate Semantic WebAdrian Paschke
 
Linked Open Data and Schema.org Panel
Linked Open Data and Schema.org PanelLinked Open Data and Schema.org Panel
Linked Open Data and Schema.org PanelAdrian Paschke
 
Semantic Complex Event Processing
Semantic Complex Event ProcessingSemantic Complex Event Processing
Semantic Complex Event ProcessingAdrian Paschke
 
7th AIS SigPrag International Conference on Pragmatic Web (ICPW 2012)
7th AIS SigPrag International Conference on Pragmatic Web (ICPW 2012)7th AIS SigPrag International Conference on Pragmatic Web (ICPW 2012)
7th AIS SigPrag International Conference on Pragmatic Web (ICPW 2012)Adrian Paschke
 
Semantic Complex Event Processing at Sem Tech 2010
Semantic Complex Event Processing at Sem Tech 2010Semantic Complex Event Processing at Sem Tech 2010
Semantic Complex Event Processing at Sem Tech 2010Adrian Paschke
 

Plus de Adrian Paschke (11)

Tutorial - Introduction to Rule Technologies and Systems
Tutorial - Introduction to Rule Technologies and SystemsTutorial - Introduction to Rule Technologies and Systems
Tutorial - Introduction to Rule Technologies and Systems
 
Loomp - Web 3.0 Collaborative Semantic Content Annotator
Loomp - Web 3.0 Collaborative Semantic Content AnnotatorLoomp - Web 3.0 Collaborative Semantic Content Annotator
Loomp - Web 3.0 Collaborative Semantic Content Annotator
 
The Nature of Information
The Nature of InformationThe Nature of Information
The Nature of Information
 
Semantic Web from the 2013 Perspective
Semantic Web from the 2013 PerspectiveSemantic Web from the 2013 Perspective
Semantic Web from the 2013 Perspective
 
PragmaticWeb 4.0 - Towards an active and interactive Semantic Media Web
PragmaticWeb 4.0 - Towards an active and interactive Semantic Media WebPragmaticWeb 4.0 - Towards an active and interactive Semantic Media Web
PragmaticWeb 4.0 - Towards an active and interactive Semantic Media Web
 
Towards an Ubiquitous Pragmatic Web
Towards an Ubiquitous Pragmatic WebTowards an Ubiquitous Pragmatic Web
Towards an Ubiquitous Pragmatic Web
 
SemTecBiz 2012: Corporate Semantic Web
SemTecBiz 2012: Corporate Semantic WebSemTecBiz 2012: Corporate Semantic Web
SemTecBiz 2012: Corporate Semantic Web
 
Linked Open Data and Schema.org Panel
Linked Open Data and Schema.org PanelLinked Open Data and Schema.org Panel
Linked Open Data and Schema.org Panel
 
Semantic Complex Event Processing
Semantic Complex Event ProcessingSemantic Complex Event Processing
Semantic Complex Event Processing
 
7th AIS SigPrag International Conference on Pragmatic Web (ICPW 2012)
7th AIS SigPrag International Conference on Pragmatic Web (ICPW 2012)7th AIS SigPrag International Conference on Pragmatic Web (ICPW 2012)
7th AIS SigPrag International Conference on Pragmatic Web (ICPW 2012)
 
Semantic Complex Event Processing at Sem Tech 2010
Semantic Complex Event Processing at Sem Tech 2010Semantic Complex Event Processing at Sem Tech 2010
Semantic Complex Event Processing at Sem Tech 2010
 

Dernier

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 

Dernier (20)

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 

The RuleML Perspective on Reaction Rule Standards

  • 1. The RuleML Perspective on Deliberation-Reaction Standards Adrian Paschke, Harold Boley, Tara Athan In Ontolog RulesReasoningLP: Series Session 5 9 January 2014 0
  • 2. Agenda • Reaction RuleML • Semantic Profiles • Semantic Metamodel and External Ontologies (Semantic Sorts) • Syntactic Customization 1
  • 3. The RuleML Family Reaction Reaction RuleML 1.0 Paper: http://link.springer.com/chapter/10.1007%2F978-3-642-32689-9_9 Reaction RuleML 1.0 Tutorial: http://www.slideshare.net/swadpasc/reaction-ruleml-ruleml2012paschketutorial RuleML 1.0 Paper http://link.springer.com/chapter/10.1007/978-3-642-16289-3_15 RuleML Overview Slides: http://cs.unb.ca/~boley/talks/RuleML-Overarching-Talk.pdf 2
  • 4. Reaction Rules: Four Sub-branches • PR Production Rules (Condition-Action rules) • ECA Event-Condition-Action (ECA) rules • CEP Rule-based Complex Event Processing (complex event processing reaction rules, (distributed) event messaging reaction rules, query reaction rules, etc.) • DR and KR Knowledge Representation AI Reasoning with Temporal/Event/Action/Situation/ Transition/Process Logics and Calculi 3
  • 5. Quick Overview: Reaction RuleML Dialects * + variants and alternatives • Spatio-Temporal Derivation RuleML (if-then)* – Time, Spatial, Interval • KR RuleML (if-then or on-if-do) * – Situation, Happens(@type), Initiates, Terminates, Holds, fluent • Production RuleML (if-do) * – Assert, Retract, Update, Action • ECA RuleML (on-if-do) * – Event, Action, + (event / action algebra operators) • CEP (arbitrary combination of on, if, do) – Receive, Send, Message 4
  • 6. (Reaction) Rules: Specializable Syntax <Rule @key @keyref @style> <meta> <!-– descriptive metadata of the rule --> </meta> Info, Life <scope> <!–- scope of the rule e.g. a rule module --> </scope> Cycle Mgt. <evaluation> <!-- intended semantics --> </evaluation> Interface <signature> <!– rule signature --> </signature> <qualification> <!–- e.g. qualifying rule metadata, e.g. priorities, validity, strategy --> </qualification> <quantification> <!-- quantifying rule declarations, e.g. variable bindings --> </quantification> <oid> <!– object identifier --> </oid> <on> <!–- event part --> </on> <if> <!–- condition part --> </if> Imple<then> <!-– (logical) conclusion part --> </then> mentation <do> <!-- action part --> </do> <after> <!–- postcondition part after action, e.g. to check effects of execution --> </after> <else> <!–- (logical) else conclusion --> </else> <elsedo> <!-- alternative/else action, e.g. for default handling --> </elsedo> </Rule> 5
  • 7. Reaction RuleML – Example Rule Types • Derivation Rule: (temporal/event/action/situation reasoning) • Production Rule: • Trigger Rule: • ECA Rule: <Rule style="reasoning"> <if>...</if> <then>...</then> </Rule> <Rule style="active"> <if>...</if> <do>...</do> </Rule> <Rule style="active"> > <on>...</on> <do>...</do> </Rule> <Rule style="active"> <on>...</on> <if>...</if> <do>...</do> </Rule> 6
  • 8. Agenda • Reaction RuleML • Semantic Profiles • Semantic Metamodel and External Ontologies (Semantic Sorts) • Syntactic Customization 7
  • 9. Integration of Semantic Profiles 1. Include/Import external Semantic Profile <xi:include href="../../profiles/SituationCalculusProfile.rrml" xpointer="xpointer(/RuleML/*)"/> <evaluation> <Profile keyref="&ruleml;ReifiedClassicalSituationCalculus" /> </evaluation> 2. Reference pre-defined Semantic Profile as profile type <evaluation> <Profile type="&rif;RDFS“ iri="http://www.w3.org/ns/entailment/RDFS"/> </evaluation> 3. Reference published external semantic profiles, e.g. RIF, OWL, profiles … Locally defined Semantic Profile <Assert> <evaluation> <Profile key="&ruleml;ReifiedClassicalSituationCalculus" > <formula><Rulebase > ... RuleML definition… </Rulebase></formula> <content> … xs:any XML content, e.g. RIF, Common Logic XML… </content> </Profile> </evaluation> <Rulebase> Note: also other non <Rule> … </Rule> RuleML content models are <Rule> … </Rule> supported </Rulebase> </Assert> 8
  • 10. Example – Reified Situation Calculus Axioms (1) 8(A1, A2, S1, S2) (do(A1,S1) = do(A2,S2))  (A1 = A2) (2) 8(S1, S2, A) (S1 < do(A,S2)) ´ (S1 <= S2) (3) 8(S1, S2) (S1 6 S2) ´ (S1 < S2)  (S1 = S2) (4) 8(S1, S2) (S1 < S2)  ¬ (S2 < S1) (5) 8(S, F) [holds(F,s0)  (8(A) (holds(F,S)  holds(F,do(A,S)))]  holds(F,S) (6) ¬S < s0 … 9
  • 11. Example: Axiomatization of Situation Calculus Profile in RuleML <Assert> Profile key can be <evaluation> referenced by keyref <Profile key="&ruleml;ReifiedSituationCalculus" > <Rulebase key="&ruleml;ReifiedSituationCalculusBasicAxioms" > <!-- Forall(A1, A2, S1, S2) (do(A1,S1) = do(A2,S2)) => (A1 = A2) --> <Rule key=„&ruleml;SituationCalculusBasicAxiom1"> <quantification> <Forall> <declare><Var>A1</Var></declare> <declare><Var>A2</Var></declare> <declare><Var>S1</Var></declare> <declare><Var>S2</Var></declare> </Forall> </quantification> <if> <Equal> <Situation> <Do> <Action><Var>A1</Var></Action><Situation><Var>S1</Var></Situation> </Do> </Situation> <Situation> <Do> <Action><Var>A2</Var></Action><Situation><Var>S2</Var></Situation></Do> </Situation> </Equal> </if> <then> <Equal> <Action><Var>A1</Var></Action> <Action><Var>A2</Var></Action> </Equal> </then> </Rule> …. </Profile> </evaluation> </Assert> 10
  • 12. Complex Event Processing – Semantic Profiles (defined in <evaluation> semantic profiles) 1. 2. – – – – – 3. 4. – – – – – – – Definition Definition of event/action pattern e.g. by event algebra Based on declarative formalization or procedural implementation Defined over an atomic instant or an interval of time, events/actions, situation, transition etc. Selection Defines selection function to select one event from several occurred events (stored in an event instance sequence e.g. in memory, database/KB) of a particular type, e.g. “first”, “last” Crucial for the outcome of a reaction rule, since the events may contain different (context) information, e.g. different message payloads or sensing information Consumption Defines which events are consumed after the detection of a complex event An event may contribute to the detection of several complex events, if it is not consumed Distinction in event messaging between “multiple receive” and “single receive” Events which can no longer contribute, e.g. are outdated, should be removed Execution Actions might have an internal effect i.e. change the knowledge state leading to state transition from (pre-)condition state to post-condition state The effect might be hypothetical (e.g. a hypothetical state via a computation) or persistent (update of the knowledge base), Actions might have an external side effect 11
  • 13. Example - Reaction Rules with Semantic Profiles <Rule style="active"> <evaluation> <Profile> e.g. selection and consumptions policies </Profile> </evaluation> <signature> <Event key="#ce1"> … event pattern definition (for event detection) </Event> </signature> <on> <Event keyref="#ce1"/> <!– use defined event pattern for detecting events --> </on> <if> … </if> <do> <Assert safety="transactional"> <!-- transactional update --> <formula> <Atom> …. </Atom> </formula> </Assert> </do> </Rule> Interface (semantic profile + event pattern signature for event processing / detection) Implementation (reaction rule triggered by event detection) 12
  • 14. Example - Semantic LP Profiles 13
  • 15. Semantic Layering - Example LP Semantic Profiles  DWFS O-SEM  WFS  COMP  GDWFS COMP3   WFS+   GWFS DSTABLE STABLE  REG-SEM PERFECT WPERFECT MsuppP WGCWA GCWA MP A semantic SEM‘ extends a semantic SEM: SEM‘ > SEM iff 8 (P, F) SEM(P) |= F  SEM‘(P) |= F
  • 16. Semantic Profiles for Evaluation • A semantics SEM‘ extends SEM for rule program P iff all formula F which are true in SEM(P) are also true in SEM‘(P), but in SEM‘(P) more formula can be true or false than with SEM(P). • SEM' is defined for a class of programs that strictly includes the class of programs with the semantics SEM • SEM' coincides with SEM for all programs of the class of programs for which SEM is defined A semantic profile SEM’ (= intended evaluation semantics of the inference engine) can be used for all 15 programs (or scoped modules) with SEM(P) 6 SEM’(P)
  • 17. Example: Use of Semantic LP Profiles for Interpretation <-- rule interface with two alternative interpretation semantics and a signature. The interface references the implementation identified by the corresponding key --> <Rule key=“#r1"> <evaluation index="1"> <!-- WFS semantic profile --> <Profile type="&ruleml;Well-Founded-Semantics" /> </evaluation> <evaluation index="2"> <!-- alternative ASS semantic profile define in the metamodel --> <Profile type="&ruleml;Answer-Set-Semantics" /> </evaluation> <!-- the signature defines the queryable head of the backward-reasoning rule --> <signature> <Atom><Rel>likes</Rel><Var mode="+"/><Var mode=“-"/></Atom> </signature> </Rule> <!-- implementation of rule 1 which is interpreted either by WFS or by ASS semantics and only allows queries according to it's signature definition. --> <Rule keyref=“#r1" style="reasoning"> <if>... </if> <then> <Atom><Rel>likes</Rel><Var>X</Var><Var>Y</Var></Atom> </then> </Rule> Interface with evaluation semantics and public rule signature Implemen tation 16
  • 18. Example – RIF SWC Profiles Profile IRI of the Profile Model Satisfiability Entailment Simple http://www.w3. RIF-Simpleorg/ns/entailme model nt/Simple satisfiability RIF-Simpleentailment RDF http://www.w3. org/ns/entailme RIF-RDF-model nt/RDF RIF-RDFsatisfiability RIF-RDFentailment RDFS http://www.w3. org/ns/entailme RIF-RDFS-model nt/RDFS RIF-RDFSsatisfiability RIF-RDFSentailment D http://www.w3. org/ns/entailme RIF-D-model nt/D RIF-Dsatisfiability RIF-Dentailment OWL Direct http://www.w3. RIF-OWL Directorg/ns/entailme model nt/OWL-Direct RIF-OWL Directsatisfiability RIF-OWL Directentailment Simple < RDF < RDFS < D < OWL RDF-Based Example: <evaluation> <Profile type="&rif;RDFS“ iri="http://www.w3.org/ns/entailment/RDFS"/> 17 </evaluation>
  • 19. Semantic Profiles in Nested Program Scopes <Assert key="#module1”> <evaluation><Profile> ...SEM’’… </Profile><evaluation> <Rulebase key="#innermodule1.1"> <evaluation><Profile> ...SEM’… </Profile><evaluation> <Rule key=“#rule1”> <evaluation><Profile> ...SEM… </Profile><evaluation> </Rule> <Rule key=“#rule2”> … </Rule> </Rulebase> <Rulebase key="#innermodule1.2"> … </Rulebase> Outer Scope Inner Module Scope Rule Scope Rule Scope Inner Module Scope </Assert> SEM‘‘(#module1) > SEM‘(#innermodule1.1) > SEM(#rule1) SEM(#rule2) = SEM‘‘(#module1) SEM‘(#innermodule1.2) = SEM‘‘(#module1) 18
  • 20. Dynamic Program Views with Scopes and Guards <Assert key="#module1”> <meta> <!-- descriptive metadata --> <Atom><Rel iri="dc:creator"/><Ind>Adrian Paschke</Ind></arg></Atom> </meta> <qualification> <!-- qualifying metadata --> <Atom> <!-- the module is valid for one year from 2011 to 2012 --> <Rel>valid</Rel> <Interval type="&ruleml;TimeInstant"> <Time type="&ruleml;TimeInstant"><Data xsi:type="xs:date">2011-01-01</Data></Time> <Time type="&ruleml;TimeInstant"><Data xsi:type="xs:date">2012-01-01</Data></Time> </Interval> </Atom> </qualification> <Rulebase key="#innermodule1.1"> <!– the rule base scopes apply to all knowledge in the rule base --> <scope> <!– scope : only knowledge authored by „Adrian Paschke“ --> <Atom><Rel iri="dc:creator"/><Ind>Adrian Paschke</Ind></arg></Atom> Outer </scope> Scope <scope> <!– scope : only valid knowledge; validity value will be bound to variable --> <Atom><Rel>valid</Rel><Var>Validity</Var></Atom> </scope> <Rule key=“#rule1”> Inner <scope> <Atom><Rel>source</Rel><Ind>./module1.prova</Ind></Atom></scope> Scope <guard> <!-- guard on the validity: “current date during validity of module1” + <Operator type="&ruleml;During"><Expr iri="…getDate()“/><Var>Validity</Var></Operator> Guard </guard> <if> … </if> <then> </then> Note: Local functions are </Rule> interpreted with the intended </Rulebase> semantics of the scope 19 </Assert>
  • 21. Test Cases for Self-validating Rule Bases • Test Cases constrain the possible models and approximate the intended models of the rule base – Queries are used to test the rule base Test Cases (+,-) inconsistent: • Partial Model Test Cases (+,-) consistent: A test case is defined by T := {X, A, N}, where – X  L assertion base (input data, e.g. facts ) – A L a formula denoting a test query Intended Model – • + + + + + + Intended Model - - N := + , – a positive or negative label Semantics M0 |TC (X, A, ) iff  m  M0 : m   (Mod(X),R)  m Mod( A) M0 |TC (X, A, ) iff  m  M0 : m   (Mod(X),R)  m Mod( A) – – – |=TC compatibility relation Mod association function between sets of formulas and sets of models Σ model selection function A  CR (X ) for T:={X, A, +} and A  CR (X ) for T:={X,A,-} – CR(X) deductive closure of X. Decidable inference operator based on formal proofs
  • 22. Rule Markup for Test Cases / Test Suites <TestSuite ruleBase="SampleBase.xml"> <Test id="ID001" purpose="..."> <Assert><formula> <And> <Atom> <Rel>parent</Rel> <Ind>John</Ind> <Ind>Mary</Ind> </Atom> </And> </formula></Assert> <TestItem expectedAnswer="yes"> <Query><formula> <Atom closure="universal"> <Rel>uncle</Rel> <Ind>Mary</Ind> <Var>Nephew</Var> </Atom> </formula></Query> <expectedResults> <VariableValuePair> <Var>Nephew</Var> <Ind>Tom</Ind> </VariableValuePair> <VariableValuePair> <Var>Nephew</Var> <Ind>Irene</Ind> </VariableValuePair> </expectedResults> </TestItem> <InferenceEngineSemantics><Profile =“&ruleML;MinimalHerbrandSemantics”/></InferenceEngineSemantics> </Test></TestSuite>
  • 23. Testing Semantic Properties • Entailment Tests for Classical Logics – right weakening, reflexivity, and, or, left logical equivalence, cautious monotony, cut, rationality, negation rat., disjunction rat., … • Entailment Tests for Skeptical Logics – cumulativity, rationality, … • Weak Semantic Properties Tests – elimination of tautologies, generalized principle of partial evaluation, positive/negative reduction, elimination of non-minimal rules, independence, relevance, … 22
  • 24. Example – Cautious Montony Test P: a b c c <<<<- not b not a not c a P’: a b c c c <<<<- not b not a not c a T:{a=>true,c=>true} • STABLE(P) |=TC {a, not b, c}, i.e. T succeeds. • STABLE(P’) |=TC {not a, b, c}, i.e. T fails. Test Case: STABLE does not fulfil not cautious monotony 23
  • 25. Agenda • Reaction RuleML • Semantic Profiles • Semantic Metamodel and External Ontologies (Semantic Sorts) • Syntactic Customization 24
  • 26. RuleML Types (Sorted Logic) • Types (sorts) can be assigned by using the @type attribute • External vocabularies / ontologies define types, e.g., <Var type="&vo;Vehicle">Car</Var> <Ind iri="&vo;Corolla" type="&vo;Sedan"/> • Semantics defined / linked by Semantic Profile, e.g. order-sorted logic using RDFS or OWL entailment profiles
  • 27. Reaction RuleML Examples with Types from RuleML Metamodel and External Ontologies <Quantifier type=“&ruleml;Forall"> == <Forall> <Operator type="&ruleml;And"> == <And> <Operator type="&ruleml;Conjunction"> == <Conjunction> <Negation type="&ruleml;InflationaryNegation"> == <Naf> <Action type="&ruleml;Assert"> == <Assert> <Action type="&ruleml;Retract"> == <Retract> <Event type="&ruleml;SimpleEvent"> == <Atom> … </Atom> <Event type="ibm:CommonBaseEvent"> == IBM CBE <Operator type="snoop:Sequence"> == Snoop Algebra == <Operator type="&ruleml;Sequence"> == <Sequence> <Ind iri="person.xml#xpointer(//Person/LastName[1]/text())"/> <Action iri="BPEL.xml#xpointer(//invoke[@name=checkHotel])"> 26
  • 28. Reaction RuleML Metamodel Top Level Ontologies General concepts such as space, time, event, action and their properties and relations Spatio Ontology Action Ontology Temporal Ontology Event Ontology Vocabularies related to specific domains by specializing the concepts introduced in the top-level ontology Situation Ontology Task Activities Ontologies Domain Ontologies Specific user/application ontologies Process Ontology Application Ontologies Agent Ontology Vocabularies related to generic tasks or activities by specializing the concepts introduced in the top-level ontology E.g. ontologies describing roles played by domain entities while perfoming application activities 27
  • 29. Time Top Ontology Metamodel Time Time Instant Time Types Time Interval 28
  • 30. Interval Top Ontology Metamodel Interval Types Interval Empty Interval Degene rated Interval Left Closed Right Open Interval Left Open Right Closed Interval Left Open Interval Left Closed Interva l Right Closed Interva l Right Open Interva l 29
  • 31. Event Top Ontology Metamodel Event Simple Event Event Types Complex Event 30
  • 32. Action Top Ontology Metamodel Action Atomic Action Action Types Complex Action 31
  • 33. Situation Top Ontology Metamodel Situation Heterogeneous Situation Fluent has property has property Situation Types Homogenous Situation Domain ontologies Dynamic Change Situation Time Frame Situation Frequency Situation State Situation Process Situation Iterative Situation Habitual Situation 32
  • 34. Example: Situation Top Ontology Metamodel Metadata Properties Fluent Properties hasValue Situation Properties (time, location, participants, …) use the other top ontologies hasProperties Situation Content Situation Descriptions hasContent Situation Situation Types Heterogeneous Situation Homogenous Situation Domain ontologies Dynamic Change Situation TrafficLight Changes Time Frame Situation Frequency Situation Within5 Minutes Rings3 Times State Situation LaysOn TheFloor Process Situation He Runs He Coughs Iterative Situation He Smokes Habitual Situation Situation Individuals 33
  • 35. Example - Event MetaModel (for defining Event Types as Instances of the MetaModel Event Class) Defined Event Types Event Class Definition 34
  • 36. Extended Event Meta Model Ontology (with computational properties and complex value definitions) 35
  • 37. Example - Typed Complex Event Pattern Definition <Event key=“#ce2" type="&ruleml;ComplexEvent"> <signature> <!-- pattern signature definition --> <Sequence> <signature> <Event type="&ruleml;SimpleEvent"> <signature><Event>...event_A...</Event></signature> </Event> </signature> <signature><Event type="&ruleml;ComplexEvent" keyref="ce1"/></signature> <signature> <Event type="cbe:CommonBaseEvent" iri="cbe.xml#xpointer(//CommonBaseEvent)"/> </signature> </Sequence> </signature> </Event> Event Pattern defining Event Templates signature <Event key=“#ce1"> <signature> <!-- event pattern signature --> <Concurrent> <Event><meta><Time>...t3</Time></meta><signature>...event_B</signature></Event> <Event><meta><Time>...t3</Time></meta><signature>...event_C</signature></Event> </Concurrent> </signature> </Event> <Event key=“#e1” keyref=“#ce2”><content>…</content></Event> Event 36 Instance
  • 38. Agenda • Reaction RuleML • Semantic Profiles • Semantic Metamodel and External Ontologies (Semantic Sorts) • Syntactic Customization 37
  • 39. RuleML Sublanguages Customized by MYNG as Relax NG Schemas (1) 38
  • 40. RuleML Sublanguages Customized by MYNG as Relax NG Schemas (2) 39
  • 41. Example Derivation RuleML Expressiveness Layering Extended Disjunctive LP Extended LP Normal Disjunctive LP Stratified Disjunctive LP Definite Disjunctive LP Normal LP Stratified LP Definite LP
  • 42. Example - Production RuleML Layering Normal Disjunctive PR with (non-stratified) iNeg Stratified Disjunctive PR with iNeg Normal PR with (nonstratified) iNeg Definite Disjunctive PR Stratified PR with iNeg Definite PR
  • 43. Example ECA and CEP RuleML Expressiveness Layering Serial Derivation Rules with local nested Reaction Rules Messaging RRs (serial reaction rules for workflow-style execution in branching logics) Active Reaction Rules with Alternative Actions (If-do-elsedo style) Active ECAP RRs Active ECA RRs Trigger Reaction Rules (EA RRs)
  • 44. Summary • Fine grained syntactic language configuration (expressiveness) with MYNG (as Relax NG schemas) • Intended semantics defined by Semantic Profiles – Semantic Test Cases for verification and validation • Sorted Logic supports Types defined in external semantic ontologies and Meta Model vocabulary • Towards joint standards for Deliberation, Reaction Rules 43
  • 45. Thank you ! Questions? Acknowledgement to the members of the Reaction RuleML technical group 44 44
  • 46. RuleML Online Community • RuleML MediaWiki (http://wiki.ruleml.org) • Mailing lists (http://ruleml.org/mailman/listinfo) • Technical Groups (http://wiki.ruleml.org/index.php/Organizational_Structure#Technical_Groups) – – – – – Uncertainty Reasoning Defeasible Logic Reaction Rules Multi-Agent Systems … • RuleML sources are hosted on Github (https://github.com/RuleML) 45
  • 47. • Further Reading – (Reaction) RuleML Harold Boley, Adrian Paschke, Omair Shafiq: RuleML 1.0: The Overarching Specification of Web Rules. RuleML 2010: 162-178 http://dx.doi.org/10.1007/978-3-642-16289-3_15 http://www.cs.unb.ca/~boley/talks/RuleML-Overarching-Talk.pdf • Adrian Paschke, Harold Boley, Zhili Zhao, Kia Teymourian and Tara Athan: Reaction RuleML 1.0: Standardized Semantic Reaction Rules, 6th International Conference on Rules (RuleML 2012), Montpellier, France, August 27-31, 2012 http://link.springer.com/chapter/10.1007%2F978-3-642-32689-9_9 http://www.slideshare.net/swadpasc/reaction-ruleml-ruleml2012paschketutorial • • Adrian Paschke: Tutorial on Semantic Complex Event Processing and Reaction RuleML, atDemAAL 2013 Dem@Care Summer School on Ambient Assisted Living, 16-20 September 2013, Chania, Crete, Greece http://www.slideshare.net/swadpasc/dem-aal-semanticceppaschke Paschke, A., Boley, H.: Rule Markup Languages and Semantic Web Rule Languages, in Handbook of Research on Emerging Rule-Based Languages and Technologies: Open Solutions and Approaches, IGI Publishing, ISBN:1-60566-402-2, 2009 http://www.igi-global.com/chapter/rule-markup-languages-semantic-web/35852 Sample chapter: http://nparc.cisti-icist.nrc-cnrc.gc.ca/npsi/ctrl?action=rtdoc&an=18533385 • Paschke, A., Boley, H.: Rules Capturing Event and Reactivity, in Handbook of Research on Emerging RuleBased Languages and Technologies: Open Solutions and Approaches, IGI Publishing, ISBN:1-60566-4022, 2009 http://www.igi-global.com/book/handbook-research-emerging-rule-based/465 Sample Chapter: http://nparc.cisti-icist.nrc-cnrc.gc.ca/npsi/ctrl?action=rtdoc&an=16435934&article=0&fd=pdf • Adrian Paschke and Harold Boley: Rule Responder: Rule-Based Agents for the Semantic-Pragmatic Web, in Special Issue on Intelligent Distributed Computing in International Journal on Artificial Intelligence Tools (IJAIT), V0l. 20,6, 2011 https://www.researchgate.net/publication/220160498
  • 48. Further Reading – RuleML Test Cases • Adrian Paschke: Verification, Validation, Integrity of Rule Based Policies and Contracts in the Semantic Web, 2nd International Semantic Web Policy Workshop (SWPW'06), Nov. 5-9, 2006, Athens, GA, USA http://ceur-ws.org/Vol-207/paper01.pdf • Adrian Paschke, Jens Dietrich, Adrian Giurca, Gerd Wagner, Sergey Lukichev: On Self-Validating Rule Bases, Proceedings of 2nd International Workshop on Semantic Web Enabled Software Engineering (SWESE 2006), Athens, Georgia, USA (6th November 2006), November 2006 http://www.rewerse.net/publications/rewerse-description/REWERSE-RP-2006-166.html http://km.aifb.kit.edu/ws/swese2006/final/paschke_full.pdf http://www.researchgate.net/publication/228359327_On_self-validating_rule_bases • Adrian Paschke and Jens Dietrich: On the Test-Driven Development and Validation of Business Rules. ISTA 2005: 31-48 http://subs.emis.de/LNI/Proceedings/Proceedings63/article3604.html • Adrian Paschke: The ContractLog Approach Towards Test-driven Verification and Validation of Rule Bases - A Homogeneous Integration of Test Cases and Integrity Constraints into Evolving Logic Programs and Rule Markup Languages (RuleML), in IBIS 10/2005 http://rbsla.ruleml.org/docs/ContractLog_VVI.pdf