SlideShare uma empresa Scribd logo
1 de 37
Baixar para ler offline
Multi-paradigm Coordination for MAS
Integrating Heterogeneous Coordination Approaches in
MAS Technologies
Stefano Mariani Andrea Omicini
{s.mariani, andrea.omicini}@unibo.it
Dipartimento di Informatica – Scienza e Ingegneria (DISI)
Alma Mater Studiorum – Universit`a di Bologna
XVII Workshop “From Objects to Agents” (WOA 2016)
Catania, Italy, 30 July 2016
Mariani & Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 1 / 37
Outline
1 Motivation & Goal
2 State-of-Art Agent-oriented Frameworks
3 Enabling Multi-paradigm Coordination
4 Conclusive Remarks
Mariani & Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 2 / 37
Motivation & Goal
Outline
1 Motivation & Goal
2 State-of-Art Agent-oriented Frameworks
3 Enabling Multi-paradigm Coordination
4 Conclusive Remarks
Mariani & Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 3 / 37
Motivation & Goal
Motivation & Goal I
multi-agent systems (MAS) impose heterogeneous requirements on
the interaction means and paradigms
e.g., message-passing vs. shared space, synchronous vs. asynchronous,
proactive vs. reactive, etc.
e.g., software agents vs. physical devices
coordination approaches can be classified according to diverse criteria
means of interaction—e.g. messages vs. tuples
synchronism of interaction primitives—synchronous vs. asynchronous
programming style—e.g. reactive (actors), vs. pro-active (agents)
objective or subjective [OO03], depending on who is responsible for the
“burden of coordination”—agents themselves or a third-party
Mariani & Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 4 / 37
Motivation & Goal
Motivation & Goal II
respecting agents’ autonomy is a foremost issue in design of
coordination models for MAS
! reactive programming styles often lead to inversion of control
! synchronous semantics without adequate uncoupling leads agents to
passively withstand the outcomes of coordination
Goal
provide MAS designers with seamless support to multi-paradigm
coordination while preserving autonomy of agents
 agents deliberatively adapt coordination paradigm and interaction means
based on static preference or run-time contingencies
 such a choice does not affect negatively other agents’ activities
⇒ focus on JADE [BPR99], Jason [BHW07], and TuCSoN [OZ99]
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 5 / 37
State-of-Art Agent-oriented Frameworks
Outline
1 Motivation  Goal
2 State-of-Art Agent-oriented Frameworks
3 Enabling Multi-paradigm Coordination
4 Conclusive Remarks
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 6 / 37
State-of-Art Agent-oriented Frameworks JADE
JADE in a Nutshell I
JADE
JADE [BPR99] is a Java-based framework and infrastructure to develop
and deploy agent-based distributed applications in compliance with FIPA
standard specifications for interoperable MAS
autonomy of agents is supported by the behaviour abstraction
! Java objects executed pseudo-concurrently within a single thread by a
hidden non-preemptive round-robin scheduler
! behaviours switch only at completion—in the meanwhile no other
behaviour can execute
! behaviours execute from the beginning every time—no way to
“stop-then-resume” a behaviour at arbitrary statements
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 7 / 37
State-of-Art Agent-oriented Frameworks JADE
JADE in a Nutshell II
coordination adopts the subjective stance through the agent
communication channel (ACC), providing asynchronous
message-passing
agents have a mailbox where incoming communications wait to be
pro-actively considered
receive() vs. blockingReceive() for (a)synchronously retrieving
messages
! “block-then-resume” pattern to avoid hindering autonomy of agents
with blockingReceive()—blockingReceive() suspends the agent
as a whole, method block() suspends only the caller behaviour,
automatically resumed by JADE upon reception of any message
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 8 / 37
State-of-Art Agent-oriented Frameworks JADE
JADE in a Nutshell III
. . . on top of which FIPA protocols (e.g. Contract Net [Smi80] and
Achieve Rational Effect [Fou02]) are designed and provided as
callback frameworks
callback methods correspond to each interaction step (message to be
received or sent)
promote a reactive programming style, where agents synchronously
wait for messages
 internally implemented abiding to the block-then-resume pattern to
keep responsiveness to other interactions
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 9 / 37
State-of-Art Agent-oriented Frameworks Jason
Jason in a Nutshell I
Jason
Jason [BHW07] is a development framework and runtime system for BDI
agents implemented in a dialect of AgentSpeak [Rao96]
autonomy of agents is supported by the plan / intention BDI
abstractions
a plan is scheduled as soon as a triggering event occurs
not directly executed “as is” but instantiated as an intention
! intentions are pseudo-concurrently executed one action each according
to a single-threaded round-robin scheduler
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 10 / 37
State-of-Art Agent-oriented Frameworks Jason
Jason in a Nutshell II
coordination adopts the subjective stance through an asynchronous
message passing layer
no explicit receive primitive involved, nor a mailbox to monitor:
depending on illocutionary force of messages, reception causes different
events triggering execution of plans
tell primitive to add a belief to the belief base of receiver agent,
causing a belief addition event handled by plans starting with +b clause
head—thus messages can be either re-actively or pro-actively
considered
 asynchronous vs. synchronous askOne primitive to query another
agent’s belief base—caller intention only (not the whole agent) is
suspended, then automatically resumed when possible
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 11 / 37
State-of-Art Agent-oriented Frameworks TuCSoN
TuCSoN in a Nutshell I
TuCSoN
TuCSoN [OZ99] is a Java-based, (logic) tuple-based coordination model
and infrastructure for open, distributed MAS, providing objective
coordination as service through ReSpecT tuple centres [OD01]
TuCSoN preserves autonomy of agents through agent coordination
contexts (ACC) [Omi02] . . .
 assigned to agents as they enter a TuCSoN-coordinated MAS, for
uncoupling synchronism of coordination operations invocation from
suspensive semantics of coordination primitives
mapping operations to events asynchronously dispatched to ReSpecT
tuple centres
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 12 / 37
State-of-Art Agent-oriented Frameworks TuCSoN
TuCSoN in a Nutshell II
. . . and “two-phases” execution of coordination operations
invocation vs. completion phase: in the former, operation request is
dispatched to the target tuple centre; in the latter, its response is sent
back to the invoker
! synchronism of invocation (un)couples the fate of the coordination
operation w.r.t. that of the invoker agent—e.g. a suspensive Linda in
[Gel85]
! if (a)synchronous invocation is deliberatively chosen by agents, they
(do not) get suspended, too, if the operation gets suspended
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 13 / 37
Enabling Multi-paradigm Coordination
Outline
1 Motivation  Goal
2 State-of-Art Agent-oriented Frameworks
3 Enabling Multi-paradigm Coordination
4 Conclusive Remarks
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 14 / 37
Enabling Multi-paradigm Coordination TuCSoN4JADE: Objective Coordination for JADE
TuCSoN4JADE in a Nutshell
 autonomy-preserving integration presented in [MOS14]
! main issue is making TuCSoN synchronous invocation mode
compatible with JADE concurrency model based on behaviours
 direct API access hinders agents autonomy: control flow is coupled to
that of coordination operations, which is harmful in case of
synchronous invocation [ORV+04]
⇒ TuCSoN4JADE: bridge component suitably suspending / resuming
caller behaviours depending on outcome of coordination operations
http://apice.unibo.it/xwiki/bin/view/TuCSoN/4JADE
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 15 / 37
Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason
TuCSoN4Jason in a Nutshell
! main integration issue is making TuCSoN synchronous invocation
semantics compatible with Jason concurrency model based on
intentions
 direct API access – trough Jason internal actions – hinders agents
autonomy as in the case of JADE
⇒ TuCSoN4Jason: fine-grained integration of TuCSoN two-phases
execution with Jason intention suspension mechanism, properly
suspending / resuming caller intentions depending on outcome of
coordination operations
http://apice.unibo.it/xwiki/bin/view/TuCSoN/4Jason
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 16 / 37
Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason
TuCSoN4Jason: Architecture I
1 custom agent architecture enabling customisation of the BDI engine
hidden behind each Jason agent
dispatches operation requests and responses
tracks pending and completed operations
2 operation completion listener enabling TuCSoN to couple its
invocation semantics with Jason intention suspension mechanism
dispatches notifications of operation completion
 (automatically) resumes suspended intentions when their result
becomes available
3 custom internal actions enabling Jason agents to request TuCSoN
coordination services and inspect operations outcome
provides Jason agents coordination primitives
 primitive getResult handles (automatic) intention suspension when
result of a getter primitive (such as in) is not yet available
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 17 / 37
Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason
TuCSoN4Jason: Architecture II
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 18 / 37
Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason
TuCSoN4Jason: Flow of Interactions I
1 upon internal action call the custom agent architecture (T4JnArch)
asynchronously dispatches operation request to TuCSoN
2 then it tracks pending state of operation and spawns a dedicated
completion handler (TucsonResultsHandler)
3 upon operation completion the handler is notified by TuCSoN with
the result
4 state of the operation is changed from “pending” to “completed”
5 if needed, the suspended intention within which getResult() was
called is resumed
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 19 / 37
Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason
TuCSoN4Jason: Flow of Interactions II
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 20 / 37
Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason
TuCSoN4Jason: Implementation I
Behind the scenes
! any TuCSoN4Jason internal action has an asynchronous invocation
semantics, so that agents are free to choose when to risk suspension
(of the caller intention only) by calling getResult()
⇒ when doing so, TuCSoN4Jason checks if operation result is available
if it is, the current intention can proceed
otherwise the intention gets suspended
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 21 / 37
Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason
TuCSoN4Jason: Implementation II
...
// result NOT available
if (!( results. containsKey (actionId ))) {
Circumstance c = ts.getC ();
// suspend calling intention
Intention i = c. getSelectedIntention ();
this. suspendIntention = true;
i. setSuspended (true );
c. addPendingIntention (
jason.stdlib.suspend. SELF_SUSPENDED_INT
+ i.getId (), i);
// track suspended intention
arch. getSuspendedIntentions (). put(actionId , i);
mutex.unlock (); // thread -safety
return true;
}
...
Figure: Intention suspension when getResult() is called with no result available
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 22 / 37
Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason
TuCSoN4Jason: Implementation III
// corresponding action caused suspension
if (this. suspendedIntentions .containsKey(this.actionId )) {
Intention suspendedIntention = this. suspendedIntentions
.remove(this.actionId );
this.mutex.unlock (); // thread -safety
... // parse result
Circumstance c = this.ts.getC ();
Iterator String  ik = c. getPendingIntentions (). keySet (). iterator ();
while (ik.hasNext ()) { // scan pending intentions
String k = ik.next ();
if (k.startsWith(suspend. SUSPENDED_INT )) {
Intention i = c. getPendingIntentions (). get(k);
if (i.equals( suspendedIntention )) { // find intention
i. setSuspended (false );
ik.remove ();
... // other reasoner -related stuff
c. resumeIntention (i);
Figure: Resuming a suspended intention when its result becomes available
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 23 / 37
Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason
TuCSoN4Jason: Wrap Up
TuCSoN4Jason lets Jason agents simultaneously adopt different
coordination paradigms and means, depending on run-time needs, without
them hindering each other nor any other ongoing interaction activities
 subjective coordination =⇒ Jason asynchronous message
passing—handled, e.g., reactively through belief addition events (+b )
 objective coordination =⇒ TuCSoN4Jason facilities
 synchronous TuCSoN operations =⇒ follow an operation invocation
with immediate call to getResult()
 asynchronous TuCSoN operations
 pro-active programming style =⇒ call getResult() in the Jason plan
when the information is needed
 reactive programming style =⇒ call getResult() in a parallel plan
dedicated to handling operation result
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 24 / 37
Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work
Multi-paradigm ContractNet: Scenario
contract net protocol (CNP) [Smi80] re-interpreted in a
multi-paradigm coordination setting
! a single call-for-proposals (CFP) tuple in a shared contract-net space is
more efficient than messaging each seller =⇒ tuple-based CFP
! purchase is typically a 1-to-1 interaction =⇒ message-based purchase
Book trading scenario
n seller agents advertise their catalogue of books
m buyer agents browse such catalogues looking for books
buyers start a CFP
sellers reply with actual proposals
buyers choose which one to accept
! concurrency property =⇒ sellers should stay reactive to CFPs in the
middle of a purchase transaction—besides multiple CFPs or purchases
Paradigmatic example of practical relevance of preserving autonomy
while enabling multi-paradigm coordination
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 25 / 37
Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work
Multi-paradigm ContractNet: Naive Approach I
no TuCSoN4Jason =⇒ just call TuCSoN API
! while the seller replies to CFPs, or carries on purchase orders, waiting
for further CFPs causes suspension of the intention—due getter
primitives suspensive semantics
this is fine: it is exactly for this suspensive semantics that the Linda
model works—thus, TuCSoN
 what is not-so-fine is that being the getter operation stuck, the caller
agent as a whole is stuck too, and cannot schedule other intentions in
the meanwhile
Concurrency property is lost =⇒ autonomy of agents hindered
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 26 / 37
Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work
Multi-paradigm ContractNet: Naive Approach II
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 27 / 37
Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work
Multi-paradigm ContractNet: TuCSoN4Jason Approach I
TuCSoN4Jason =⇒ call TuCSoN4Jason API
! while the seller replies to CFPs, or carries on purchase orders,
. . . same as before :)
again, this is fine: as before :)
 what is now fixed is that suspensive semantics is confined to the caller
intention, by the bridge
⇒ only the caller intention is suspended, whereas other activities can
carry on in the meanwhile
Concurrency property holds =⇒ autonomy of agents preserved, too
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 28 / 37
Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work
Multi-paradigm ContractNet: TuCSoN4Jason Approach II
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 29 / 37
Conclusive Remarks
Outline
1 Motivation  Goal
2 State-of-Art Agent-oriented Frameworks
3 Enabling Multi-paradigm Coordination
4 Conclusive Remarks
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 30 / 37
Conclusive Remarks
Which Impact?
Enabling multi-paradigm coordination along a number of orthogonal
dimensions of coordination
objective vs. subjective stance
synchronous vs. asynchronous invocation
pro-active vs. reactive programming style
brings about many requirements, especially whenever coordinables are
allowed to change coordination paradigm and means at run-time
Technologies like TuCSoN4Jason and TuCSoN4JADE are key-enablers for
applications featuring distributed and heterogeneous components which
depend on communication and coordination to carry out their duties
require diverse coordination means depending on both their own
capabilities and run-time contingencies
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 31 / 37
References
References I
Rafael H. Bordini, Jomi F. H¨ubner, and Michael J. Wooldridge.
Programming Multi-Agent Systems in AgentSpeak using Jason.
John Wiley  Sons, Ltd, October 2007.
Fabio Luigi Bellifemine, Agostino Poggi, and Giovanni Rimassa.
JADE–a FIPA-compliant agent framework.
In 4th International Conference and Exhibition on the Practical Application of Intelligent
Agents and Multi-Agent Technology (PAAM-99), pages 97–108, London, UK, 19–21 April
1999. The Practical Application Company Ltd.
Foundation for Intelligent Physical Agents.
FIPA Communicative Act Library Specification.
http://www.fipa.org/specs/fipa00037/, 6 December 2002.
David Gelernter.
Generative communication in Linda.
ACM Transactions on Programming Languages and Systems, 7(1):80–112, January 1985.
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 32 / 37
References
References II
Stefano Mariani, Andrea Omicini, and Luca Sangiorgi.
Models of autonomy and coordination: Integrating subjective  objective approaches in
agent development frameworks.
In Lars Braubach, David Camacho, and Salvatore Venticinque, editors, Intelligent
Distributed Computing VIII, volume 570 of Studies in Computational Intelligence, pages
69–79. Springer, 2014.
8th International Symposium on Intelligent Distributed Computing (IDC 2014), Madrid,
Spain, 3-5 September 2014. Proceedings.
Andrea Omicini and Enrico Denti.
From tuple spaces to tuple centres.
Science of Computer Programming, 41(3):277–294, November 2001.
Andrea Omicini.
Towards a notion of agent coordination context.
In Dan C. Marinescu and Craig Lee, editors, Process Coordination and Ubiquitous
Computing, chapter 12, pages 187–200. CRC Press, Boca Raton, FL, USA, October 2002.
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 33 / 37
References
References III
Andrea Omicini and Sascha Ossowski.
Objective versus subjective coordination in the engineering of agent systems.
In Matthias Klusch, Sonia Bergamaschi, Peter Edwards, and Paolo Petta, editors,
Intelligent Information Agents: An AgentLink Perspective, volume 2586 of Lecture Notes
in Computer Science, pages 179–202. Springer Berlin Heidelberg, 2003.
Andrea Omicini, Alessandro Ricci, Mirko Viroli, Marco Cioffi, and Giovanni Rimassa.
Multi-agent infrastructures for objective and subjective coordination.
Applied Artificial Intelligence, 18(9-10):815–831, 2004.
Andrea Omicini and Franco Zambonelli.
Coordination for Internet application development.
Autonomous Agents and Multi-Agent Systems, 2(3):251–269, September 1999.
Special Issue: Coordination Mechanisms for Web Agents.
Anand S. Rao.
AgentSpeak(L): BDI agents speak out in a logical computable language.
In Walter Van de Velde and John W. Perram, editors, Agents Breaking Away, volume 1038
of Lecture Notes in Computer Science, pages 42–55. Springer, 1996.
7th European Workshop on Modelling Autonomous Agents in a Multi-Agent World
(MAAMAW’96), Eindhoven, The Netherlands, 22-25 January 1996, Proceedings.
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 34 / 37
References
References IV
Reid G. Smith.
The Contract Net Protocol: High-level communication and control in a distributed
problem solver.
IEEE Transactions on Computers, C-29(12):1104–1113, 1980.
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 35 / 37
Extras
URLs
Slides
on APICe
→ http://apice.unibo.it/xwiki/bin/view/Talks/MulticoordWoa2016
on SlideShare
→ http://www.slideshare.net/andreaomicini/
multiparadigm-coordination-for-mas
Paper
on APICe
→ http://apice.unibo.it/xwiki/bin/view/Publications/MulticoordWoa2016
on CEUR
→ http://ceur-ws.org/Vol-????/paper ?.pdf
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 36 / 37
Multi-paradigm Coordination for MAS
Integrating Heterogeneous Coordination Approaches in
MAS Technologies
Stefano Mariani Andrea Omicini
{s.mariani, andrea.omicini}@unibo.it
Dipartimento di Informatica – Scienza e Ingegneria (DISI)
Alma Mater Studiorum – Universit`a di Bologna
XVII Workshop “From Objects to Agents” (WOA 2016)
Catania, Italy, 30 July 2016
Mariani  Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 37 / 37

Mais conteúdo relacionado

Destaque

Destaque (10)

Taller geometria no.01 5º
Taller geometria no.01 5ºTaller geometria no.01 5º
Taller geometria no.01 5º
 
Civil Engineering Degree
Civil Engineering DegreeCivil Engineering Degree
Civil Engineering Degree
 
LAS PLANTAS
LAS PLANTASLAS PLANTAS
LAS PLANTAS
 
День конституции
День конституцииДень конституции
День конституции
 
Cursos masivos abiertos y en línea: una opción para facilitar el aprendizaje ...
Cursos masivos abiertos y en línea: una opción para facilitar el aprendizaje ...Cursos masivos abiertos y en línea: una opción para facilitar el aprendizaje ...
Cursos masivos abiertos y en línea: una opción para facilitar el aprendizaje ...
 
Direitos das Crianças (versão amigável)
Direitos das Crianças (versão amigável) Direitos das Crianças (versão amigável)
Direitos das Crianças (versão amigável)
 
SEJAMAIS
SEJAMAISSEJAMAIS
SEJAMAIS
 
Ficha de avaliação MAT5 nº6
Ficha de avaliação MAT5 nº6Ficha de avaliação MAT5 nº6
Ficha de avaliação MAT5 nº6
 
Combined heat power plant (chp)
Combined heat power plant (chp)Combined heat power plant (chp)
Combined heat power plant (chp)
 
March 5 solar energy investment opportunities in the philippines ruth p bri...
March 5   solar energy investment opportunities in the philippines ruth p bri...March 5   solar energy investment opportunities in the philippines ruth p bri...
March 5 solar energy investment opportunities in the philippines ruth p bri...
 

Semelhante a Multi-paradigm Coordination for MAS

TuCSoN Coordination for MAS Situatedness: Towards a Methodology
TuCSoN Coordination for MAS Situatedness: Towards a MethodologyTuCSoN Coordination for MAS Situatedness: Towards a Methodology
TuCSoN Coordination for MAS Situatedness: Towards a MethodologyAndrea Omicini
 
Coordination in Situated Systems: Engineering MAS Environment in TuCSoN
Coordination in Situated Systems: Engineering MAS Environment in TuCSoNCoordination in Situated Systems: Engineering MAS Environment in TuCSoN
Coordination in Situated Systems: Engineering MAS Environment in TuCSoNAndrea Omicini
 
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual FrameworkEvent-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual FrameworkAndrea Omicini
 
Blending Event-Based and Multi-Agent Systems around Coordination Abstractions
Blending Event-Based and Multi-Agent Systems around Coordination AbstractionsBlending Event-Based and Multi-Agent Systems around Coordination Abstractions
Blending Event-Based and Multi-Agent Systems around Coordination AbstractionsAndrea Omicini
 
Novel Opportunities for Tuple-based Coordination: XPath, the Blockchain, and ...
Novel Opportunities for Tuple-based Coordination: XPath, the Blockchain, and ...Novel Opportunities for Tuple-based Coordination: XPath, the Blockchain, and ...
Novel Opportunities for Tuple-based Coordination: XPath, the Blockchain, and ...Andrea Omicini
 
Fuzzy logic multi-agent system
Fuzzy logic multi-agent systemFuzzy logic multi-agent system
Fuzzy logic multi-agent systemcsandit
 
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework. ...
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework. ...Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework. ...
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework. ...Andrea Omicini
 
An Architecture for Collaboration Patterns in Agile Event-Driven Environments
An Architecture for Collaboration Patterns in Agile Event-Driven EnvironmentsAn Architecture for Collaboration Patterns in Agile Event-Driven Environments
An Architecture for Collaboration Patterns in Agile Event-Driven EnvironmentsYiannis Verginadis
 
Event-driven Programming for Situated MAS with ReSpecT Tuple Centres
Event-driven Programming for Situated MAS with ReSpecT Tuple CentresEvent-driven Programming for Situated MAS with ReSpecT Tuple Centres
Event-driven Programming for Situated MAS with ReSpecT Tuple CentresStefano Mariani
 
Coordination for Situated MAS: Towards an Event-driven Architecture
Coordination for Situated MAS: Towards an Event-driven ArchitectureCoordination for Situated MAS: Towards an Event-driven Architecture
Coordination for Situated MAS: Towards an Event-driven ArchitectureAndrea Omicini
 
Towards Logic Programming as a Service: Experiments in tuProlog
Towards Logic Programming as a Service: Experiments in tuPrologTowards Logic Programming as a Service: Experiments in tuProlog
Towards Logic Programming as a Service: Experiments in tuPrologAndrea Omicini
 
Models of Autonomy and Coordination: Integrating Subjective & Objective Appro...
Models of Autonomy and Coordination: Integrating Subjective & Objective Appro...Models of Autonomy and Coordination: Integrating Subjective & Objective Appro...
Models of Autonomy and Coordination: Integrating Subjective & Objective Appro...Stefano Mariani
 
Human Computer Interaction Chapter 4 Implementation Support and Evaluation Te...
Human Computer Interaction Chapter 4 Implementation Support and Evaluation Te...Human Computer Interaction Chapter 4 Implementation Support and Evaluation Te...
Human Computer Interaction Chapter 4 Implementation Support and Evaluation Te...VijiPriya Jeyamani
 
TuCSoN on Cloud: An Event-driven Architecture for Embodied / Disembodied Coor...
TuCSoN on Cloud: An Event-driven Architecture for Embodied / Disembodied Coor...TuCSoN on Cloud: An Event-driven Architecture for Embodied / Disembodied Coor...
TuCSoN on Cloud: An Event-driven Architecture for Embodied / Disembodied Coor...Andrea Omicini
 
Object Orientation Fundamentals
Object Orientation FundamentalsObject Orientation Fundamentals
Object Orientation FundamentalsPramod Parajuli
 
AGENT, Adaptive self-Governed aerial Ecosystem by Negotiated Traffic
AGENT, Adaptive self-Governed aerial Ecosystem by Negotiated TrafficAGENT, Adaptive self-Governed aerial Ecosystem by Negotiated Traffic
AGENT, Adaptive self-Governed aerial Ecosystem by Negotiated TrafficJorge Blanco
 
Leanmanufacturingtoolinengineertoorderenvironment-Projectcostdeployment.pdf
Leanmanufacturingtoolinengineertoorderenvironment-Projectcostdeployment.pdfLeanmanufacturingtoolinengineertoorderenvironment-Projectcostdeployment.pdf
Leanmanufacturingtoolinengineertoorderenvironment-Projectcostdeployment.pdfTharulWickramarathna
 
Promoting Space-Aware Coordination: ReSpecT as a Spatial Computing Virtual Ma...
Promoting Space-Aware Coordination: ReSpecT as a Spatial Computing Virtual Ma...Promoting Space-Aware Coordination: ReSpecT as a Spatial Computing Virtual Ma...
Promoting Space-Aware Coordination: ReSpecT as a Spatial Computing Virtual Ma...Stefano Mariani
 
Monitoring and Visualisation Approach for Collaboration Production Line Envir...
Monitoring and Visualisation Approach for Collaboration Production Line Envir...Monitoring and Visualisation Approach for Collaboration Production Line Envir...
Monitoring and Visualisation Approach for Collaboration Production Line Envir...Waqas Tariq
 

Semelhante a Multi-paradigm Coordination for MAS (20)

TuCSoN Coordination for MAS Situatedness: Towards a Methodology
TuCSoN Coordination for MAS Situatedness: Towards a MethodologyTuCSoN Coordination for MAS Situatedness: Towards a Methodology
TuCSoN Coordination for MAS Situatedness: Towards a Methodology
 
Coordination in Situated Systems: Engineering MAS Environment in TuCSoN
Coordination in Situated Systems: Engineering MAS Environment in TuCSoNCoordination in Situated Systems: Engineering MAS Environment in TuCSoN
Coordination in Situated Systems: Engineering MAS Environment in TuCSoN
 
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual FrameworkEvent-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework
 
Blending Event-Based and Multi-Agent Systems around Coordination Abstractions
Blending Event-Based and Multi-Agent Systems around Coordination AbstractionsBlending Event-Based and Multi-Agent Systems around Coordination Abstractions
Blending Event-Based and Multi-Agent Systems around Coordination Abstractions
 
Novel Opportunities for Tuple-based Coordination: XPath, the Blockchain, and ...
Novel Opportunities for Tuple-based Coordination: XPath, the Blockchain, and ...Novel Opportunities for Tuple-based Coordination: XPath, the Blockchain, and ...
Novel Opportunities for Tuple-based Coordination: XPath, the Blockchain, and ...
 
Fuzzy logic multi-agent system
Fuzzy logic multi-agent systemFuzzy logic multi-agent system
Fuzzy logic multi-agent system
 
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework. ...
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework. ...Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework. ...
Event-Based vs. Multi-Agent Systems: Towards a Unified Conceptual Framework. ...
 
An Architecture for Collaboration Patterns in Agile Event-Driven Environments
An Architecture for Collaboration Patterns in Agile Event-Driven EnvironmentsAn Architecture for Collaboration Patterns in Agile Event-Driven Environments
An Architecture for Collaboration Patterns in Agile Event-Driven Environments
 
Event-driven Programming for Situated MAS with ReSpecT Tuple Centres
Event-driven Programming for Situated MAS with ReSpecT Tuple CentresEvent-driven Programming for Situated MAS with ReSpecT Tuple Centres
Event-driven Programming for Situated MAS with ReSpecT Tuple Centres
 
Coordination for Situated MAS: Towards an Event-driven Architecture
Coordination for Situated MAS: Towards an Event-driven ArchitectureCoordination for Situated MAS: Towards an Event-driven Architecture
Coordination for Situated MAS: Towards an Event-driven Architecture
 
Towards Logic Programming as a Service: Experiments in tuProlog
Towards Logic Programming as a Service: Experiments in tuPrologTowards Logic Programming as a Service: Experiments in tuProlog
Towards Logic Programming as a Service: Experiments in tuProlog
 
Models of Autonomy and Coordination: Integrating Subjective & Objective Appro...
Models of Autonomy and Coordination: Integrating Subjective & Objective Appro...Models of Autonomy and Coordination: Integrating Subjective & Objective Appro...
Models of Autonomy and Coordination: Integrating Subjective & Objective Appro...
 
Hse mda bpmn_210410
Hse mda bpmn_210410Hse mda bpmn_210410
Hse mda bpmn_210410
 
Human Computer Interaction Chapter 4 Implementation Support and Evaluation Te...
Human Computer Interaction Chapter 4 Implementation Support and Evaluation Te...Human Computer Interaction Chapter 4 Implementation Support and Evaluation Te...
Human Computer Interaction Chapter 4 Implementation Support and Evaluation Te...
 
TuCSoN on Cloud: An Event-driven Architecture for Embodied / Disembodied Coor...
TuCSoN on Cloud: An Event-driven Architecture for Embodied / Disembodied Coor...TuCSoN on Cloud: An Event-driven Architecture for Embodied / Disembodied Coor...
TuCSoN on Cloud: An Event-driven Architecture for Embodied / Disembodied Coor...
 
Object Orientation Fundamentals
Object Orientation FundamentalsObject Orientation Fundamentals
Object Orientation Fundamentals
 
AGENT, Adaptive self-Governed aerial Ecosystem by Negotiated Traffic
AGENT, Adaptive self-Governed aerial Ecosystem by Negotiated TrafficAGENT, Adaptive self-Governed aerial Ecosystem by Negotiated Traffic
AGENT, Adaptive self-Governed aerial Ecosystem by Negotiated Traffic
 
Leanmanufacturingtoolinengineertoorderenvironment-Projectcostdeployment.pdf
Leanmanufacturingtoolinengineertoorderenvironment-Projectcostdeployment.pdfLeanmanufacturingtoolinengineertoorderenvironment-Projectcostdeployment.pdf
Leanmanufacturingtoolinengineertoorderenvironment-Projectcostdeployment.pdf
 
Promoting Space-Aware Coordination: ReSpecT as a Spatial Computing Virtual Ma...
Promoting Space-Aware Coordination: ReSpecT as a Spatial Computing Virtual Ma...Promoting Space-Aware Coordination: ReSpecT as a Spatial Computing Virtual Ma...
Promoting Space-Aware Coordination: ReSpecT as a Spatial Computing Virtual Ma...
 
Monitoring and Visualisation Approach for Collaboration Production Line Envir...
Monitoring and Visualisation Approach for Collaboration Production Line Envir...Monitoring and Visualisation Approach for Collaboration Production Line Envir...
Monitoring and Visualisation Approach for Collaboration Production Line Envir...
 

Mais de Andrea Omicini

Measuring Trustworthiness in Neuro-Symbolic Integration
Measuring Trustworthiness in Neuro-Symbolic IntegrationMeasuring Trustworthiness in Neuro-Symbolic Integration
Measuring Trustworthiness in Neuro-Symbolic IntegrationAndrea Omicini
 
Explainable Pervasive Intelligence with Self-explaining Agents
Explainable Pervasive Intelligence with Self-explaining AgentsExplainable Pervasive Intelligence with Self-explaining Agents
Explainable Pervasive Intelligence with Self-explaining AgentsAndrea Omicini
 
On the Integration of Symbolic and Sub-symbolic – Explaining by Design
On the Integration of Symbolic and Sub-symbolic – Explaining by DesignOn the Integration of Symbolic and Sub-symbolic – Explaining by Design
On the Integration of Symbolic and Sub-symbolic – Explaining by DesignAndrea Omicini
 
Not just for humans: Explanation for agent-to-agent communication
Not just for humans: Explanation for agent-to-agent communicationNot just for humans: Explanation for agent-to-agent communication
Not just for humans: Explanation for agent-to-agent communicationAndrea Omicini
 
Blockchain for Intelligent Systems: Research Perspectives
Blockchain for Intelligent Systems: Research PerspectivesBlockchain for Intelligent Systems: Research Perspectives
Blockchain for Intelligent Systems: Research PerspectivesAndrea Omicini
 
Injecting (Micro)Intelligence in the IoT: Logic-based Approaches for (M)MAS
Injecting (Micro)Intelligence in the IoT: Logic-based Approaches for (M)MASInjecting (Micro)Intelligence in the IoT: Logic-based Approaches for (M)MAS
Injecting (Micro)Intelligence in the IoT: Logic-based Approaches for (M)MASAndrea Omicini
 
Conversational Informatics: From Conversational Systems to Communication Inte...
Conversational Informatics: From Conversational Systems to Communication Inte...Conversational Informatics: From Conversational Systems to Communication Inte...
Conversational Informatics: From Conversational Systems to Communication Inte...Andrea Omicini
 
Complexity in computational systems: the coordination perspective
Complexity in computational systems: the coordination perspectiveComplexity in computational systems: the coordination perspective
Complexity in computational systems: the coordination perspectiveAndrea Omicini
 
Nature-inspired Coordination: Current Status and Research Trends
Nature-inspired Coordination: Current Status and Research TrendsNature-inspired Coordination: Current Status and Research Trends
Nature-inspired Coordination: Current Status and Research TrendsAndrea Omicini
 
Micro-intelligence for the IoT: Teaching the Old Logic Dog New Programming Tr...
Micro-intelligence for the IoT: Teaching the Old Logic Dog New Programming Tr...Micro-intelligence for the IoT: Teaching the Old Logic Dog New Programming Tr...
Micro-intelligence for the IoT: Teaching the Old Logic Dog New Programming Tr...Andrea Omicini
 
Logic Programming as a Service (LPaaS): Intelligence for the IoT
Logic Programming as a Service (LPaaS): Intelligence for the IoTLogic Programming as a Service (LPaaS): Intelligence for the IoT
Logic Programming as a Service (LPaaS): Intelligence for the IoTAndrea Omicini
 
Privacy through Anonymisation in Large-scale Socio-technical Systems: The BIS...
Privacy through Anonymisation in Large-scale Socio-technical Systems: The BIS...Privacy through Anonymisation in Large-scale Socio-technical Systems: The BIS...
Privacy through Anonymisation in Large-scale Socio-technical Systems: The BIS...Andrea Omicini
 
ABMS in m-Health Self-Management
ABMS in m-Health Self-ManagementABMS in m-Health Self-Management
ABMS in m-Health Self-ManagementAndrea Omicini
 
Game Engines to Model MAS: A Research Roadmap
Game Engines to Model MAS: A Research RoadmapGame Engines to Model MAS: A Research Roadmap
Game Engines to Model MAS: A Research RoadmapAndrea Omicini
 
Spatial Multi-Agent Systems
Spatial Multi-Agent SystemsSpatial Multi-Agent Systems
Spatial Multi-Agent SystemsAndrea Omicini
 
Foundations of Multi-Agent Systems
Foundations of Multi-Agent SystemsFoundations of Multi-Agent Systems
Foundations of Multi-Agent SystemsAndrea Omicini
 
Academic Publishing in the Digital Era: A Couple of Issues (Open Access—Well,...
Academic Publishing in the Digital Era: A Couple of Issues (Open Access—Well,...Academic Publishing in the Digital Era: A Couple of Issues (Open Access—Well,...
Academic Publishing in the Digital Era: A Couple of Issues (Open Access—Well,...Andrea Omicini
 
Self-organisation of Knowledge in Socio-technical Systems: A Coordination Per...
Self-organisation of Knowledge in Socio-technical Systems: A Coordination Per...Self-organisation of Knowledge in Socio-technical Systems: A Coordination Per...
Self-organisation of Knowledge in Socio-technical Systems: A Coordination Per...Andrea Omicini
 
Anticipatory Coordination in Socio-technical Knowledge-intensive Environments...
Anticipatory Coordination in Socio-technical Knowledge-intensive Environments...Anticipatory Coordination in Socio-technical Knowledge-intensive Environments...
Anticipatory Coordination in Socio-technical Knowledge-intensive Environments...Andrea Omicini
 
The Distributed Autonomy. Software Abstractions and Technologies for Autonomo...
The Distributed Autonomy. Software Abstractions and Technologies for Autonomo...The Distributed Autonomy. Software Abstractions and Technologies for Autonomo...
The Distributed Autonomy. Software Abstractions and Technologies for Autonomo...Andrea Omicini
 

Mais de Andrea Omicini (20)

Measuring Trustworthiness in Neuro-Symbolic Integration
Measuring Trustworthiness in Neuro-Symbolic IntegrationMeasuring Trustworthiness in Neuro-Symbolic Integration
Measuring Trustworthiness in Neuro-Symbolic Integration
 
Explainable Pervasive Intelligence with Self-explaining Agents
Explainable Pervasive Intelligence with Self-explaining AgentsExplainable Pervasive Intelligence with Self-explaining Agents
Explainable Pervasive Intelligence with Self-explaining Agents
 
On the Integration of Symbolic and Sub-symbolic – Explaining by Design
On the Integration of Symbolic and Sub-symbolic – Explaining by DesignOn the Integration of Symbolic and Sub-symbolic – Explaining by Design
On the Integration of Symbolic and Sub-symbolic – Explaining by Design
 
Not just for humans: Explanation for agent-to-agent communication
Not just for humans: Explanation for agent-to-agent communicationNot just for humans: Explanation for agent-to-agent communication
Not just for humans: Explanation for agent-to-agent communication
 
Blockchain for Intelligent Systems: Research Perspectives
Blockchain for Intelligent Systems: Research PerspectivesBlockchain for Intelligent Systems: Research Perspectives
Blockchain for Intelligent Systems: Research Perspectives
 
Injecting (Micro)Intelligence in the IoT: Logic-based Approaches for (M)MAS
Injecting (Micro)Intelligence in the IoT: Logic-based Approaches for (M)MASInjecting (Micro)Intelligence in the IoT: Logic-based Approaches for (M)MAS
Injecting (Micro)Intelligence in the IoT: Logic-based Approaches for (M)MAS
 
Conversational Informatics: From Conversational Systems to Communication Inte...
Conversational Informatics: From Conversational Systems to Communication Inte...Conversational Informatics: From Conversational Systems to Communication Inte...
Conversational Informatics: From Conversational Systems to Communication Inte...
 
Complexity in computational systems: the coordination perspective
Complexity in computational systems: the coordination perspectiveComplexity in computational systems: the coordination perspective
Complexity in computational systems: the coordination perspective
 
Nature-inspired Coordination: Current Status and Research Trends
Nature-inspired Coordination: Current Status and Research TrendsNature-inspired Coordination: Current Status and Research Trends
Nature-inspired Coordination: Current Status and Research Trends
 
Micro-intelligence for the IoT: Teaching the Old Logic Dog New Programming Tr...
Micro-intelligence for the IoT: Teaching the Old Logic Dog New Programming Tr...Micro-intelligence for the IoT: Teaching the Old Logic Dog New Programming Tr...
Micro-intelligence for the IoT: Teaching the Old Logic Dog New Programming Tr...
 
Logic Programming as a Service (LPaaS): Intelligence for the IoT
Logic Programming as a Service (LPaaS): Intelligence for the IoTLogic Programming as a Service (LPaaS): Intelligence for the IoT
Logic Programming as a Service (LPaaS): Intelligence for the IoT
 
Privacy through Anonymisation in Large-scale Socio-technical Systems: The BIS...
Privacy through Anonymisation in Large-scale Socio-technical Systems: The BIS...Privacy through Anonymisation in Large-scale Socio-technical Systems: The BIS...
Privacy through Anonymisation in Large-scale Socio-technical Systems: The BIS...
 
ABMS in m-Health Self-Management
ABMS in m-Health Self-ManagementABMS in m-Health Self-Management
ABMS in m-Health Self-Management
 
Game Engines to Model MAS: A Research Roadmap
Game Engines to Model MAS: A Research RoadmapGame Engines to Model MAS: A Research Roadmap
Game Engines to Model MAS: A Research Roadmap
 
Spatial Multi-Agent Systems
Spatial Multi-Agent SystemsSpatial Multi-Agent Systems
Spatial Multi-Agent Systems
 
Foundations of Multi-Agent Systems
Foundations of Multi-Agent SystemsFoundations of Multi-Agent Systems
Foundations of Multi-Agent Systems
 
Academic Publishing in the Digital Era: A Couple of Issues (Open Access—Well,...
Academic Publishing in the Digital Era: A Couple of Issues (Open Access—Well,...Academic Publishing in the Digital Era: A Couple of Issues (Open Access—Well,...
Academic Publishing in the Digital Era: A Couple of Issues (Open Access—Well,...
 
Self-organisation of Knowledge in Socio-technical Systems: A Coordination Per...
Self-organisation of Knowledge in Socio-technical Systems: A Coordination Per...Self-organisation of Knowledge in Socio-technical Systems: A Coordination Per...
Self-organisation of Knowledge in Socio-technical Systems: A Coordination Per...
 
Anticipatory Coordination in Socio-technical Knowledge-intensive Environments...
Anticipatory Coordination in Socio-technical Knowledge-intensive Environments...Anticipatory Coordination in Socio-technical Knowledge-intensive Environments...
Anticipatory Coordination in Socio-technical Knowledge-intensive Environments...
 
The Distributed Autonomy. Software Abstractions and Technologies for Autonomo...
The Distributed Autonomy. Software Abstractions and Technologies for Autonomo...The Distributed Autonomy. Software Abstractions and Technologies for Autonomo...
The Distributed Autonomy. Software Abstractions and Technologies for Autonomo...
 

Último

User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)Columbia Weather Systems
 
Citronella presentation SlideShare mani upadhyay
Citronella presentation SlideShare mani upadhyayCitronella presentation SlideShare mani upadhyay
Citronella presentation SlideShare mani upadhyayupadhyaymani499
 
ALL ABOUT MIXTURES IN GRADE 7 CLASS PPTX
ALL ABOUT MIXTURES IN GRADE 7 CLASS PPTXALL ABOUT MIXTURES IN GRADE 7 CLASS PPTX
ALL ABOUT MIXTURES IN GRADE 7 CLASS PPTXDole Philippines School
 
Forensic limnology of diatoms by Sanjai.pptx
Forensic limnology of diatoms by Sanjai.pptxForensic limnology of diatoms by Sanjai.pptx
Forensic limnology of diatoms by Sanjai.pptxkumarsanjai28051
 
Microphone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptxMicrophone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptxpriyankatabhane
 
User Guide: Magellan MX™ Weather Station
User Guide: Magellan MX™ Weather StationUser Guide: Magellan MX™ Weather Station
User Guide: Magellan MX™ Weather StationColumbia Weather Systems
 
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 GenuineCall Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuinethapagita
 
basic entomology with insect anatomy and taxonomy
basic entomology with insect anatomy and taxonomybasic entomology with insect anatomy and taxonomy
basic entomology with insect anatomy and taxonomyDrAnita Sharma
 
Vision and reflection on Mining Software Repositories research in 2024
Vision and reflection on Mining Software Repositories research in 2024Vision and reflection on Mining Software Repositories research in 2024
Vision and reflection on Mining Software Repositories research in 2024AyushiRastogi48
 
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxSTOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxMurugaveni B
 
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)riyaescorts54
 
Environmental Biotechnology Topic:- Microbial Biosensor
Environmental Biotechnology Topic:- Microbial BiosensorEnvironmental Biotechnology Topic:- Microbial Biosensor
Environmental Biotechnology Topic:- Microbial Biosensorsonawaneprad
 
Neurodevelopmental disorders according to the dsm 5 tr
Neurodevelopmental disorders according to the dsm 5 trNeurodevelopmental disorders according to the dsm 5 tr
Neurodevelopmental disorders according to the dsm 5 trssuser06f238
 
Four Spheres of the Earth Presentation.ppt
Four Spheres of the Earth Presentation.pptFour Spheres of the Earth Presentation.ppt
Four Spheres of the Earth Presentation.pptJoemSTuliba
 
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPirithiRaju
 
Base editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editingBase editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editingNetHelix
 
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptxECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptxmaryFF1
 
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...lizamodels9
 

Último (20)

User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)User Guide: Orion™ Weather Station (Columbia Weather Systems)
User Guide: Orion™ Weather Station (Columbia Weather Systems)
 
Citronella presentation SlideShare mani upadhyay
Citronella presentation SlideShare mani upadhyayCitronella presentation SlideShare mani upadhyay
Citronella presentation SlideShare mani upadhyay
 
Hot Sexy call girls in Moti Nagar,🔝 9953056974 🔝 escort Service
Hot Sexy call girls in  Moti Nagar,🔝 9953056974 🔝 escort ServiceHot Sexy call girls in  Moti Nagar,🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Moti Nagar,🔝 9953056974 🔝 escort Service
 
ALL ABOUT MIXTURES IN GRADE 7 CLASS PPTX
ALL ABOUT MIXTURES IN GRADE 7 CLASS PPTXALL ABOUT MIXTURES IN GRADE 7 CLASS PPTX
ALL ABOUT MIXTURES IN GRADE 7 CLASS PPTX
 
Forensic limnology of diatoms by Sanjai.pptx
Forensic limnology of diatoms by Sanjai.pptxForensic limnology of diatoms by Sanjai.pptx
Forensic limnology of diatoms by Sanjai.pptx
 
Microphone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptxMicrophone- characteristics,carbon microphone, dynamic microphone.pptx
Microphone- characteristics,carbon microphone, dynamic microphone.pptx
 
User Guide: Magellan MX™ Weather Station
User Guide: Magellan MX™ Weather StationUser Guide: Magellan MX™ Weather Station
User Guide: Magellan MX™ Weather Station
 
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 GenuineCall Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
Call Girls in Majnu Ka Tilla Delhi 🔝9711014705🔝 Genuine
 
basic entomology with insect anatomy and taxonomy
basic entomology with insect anatomy and taxonomybasic entomology with insect anatomy and taxonomy
basic entomology with insect anatomy and taxonomy
 
Vision and reflection on Mining Software Repositories research in 2024
Vision and reflection on Mining Software Repositories research in 2024Vision and reflection on Mining Software Repositories research in 2024
Vision and reflection on Mining Software Repositories research in 2024
 
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptxSTOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
STOPPED FLOW METHOD & APPLICATION MURUGAVENI B.pptx
 
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
(9818099198) Call Girls In Noida Sector 14 (NOIDA ESCORTS)
 
Environmental Biotechnology Topic:- Microbial Biosensor
Environmental Biotechnology Topic:- Microbial BiosensorEnvironmental Biotechnology Topic:- Microbial Biosensor
Environmental Biotechnology Topic:- Microbial Biosensor
 
Neurodevelopmental disorders according to the dsm 5 tr
Neurodevelopmental disorders according to the dsm 5 trNeurodevelopmental disorders according to the dsm 5 tr
Neurodevelopmental disorders according to the dsm 5 tr
 
Four Spheres of the Earth Presentation.ppt
Four Spheres of the Earth Presentation.pptFour Spheres of the Earth Presentation.ppt
Four Spheres of the Earth Presentation.ppt
 
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdfPests of Blackgram, greengram, cowpea_Dr.UPR.pdf
Pests of Blackgram, greengram, cowpea_Dr.UPR.pdf
 
Base editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editingBase editing, prime editing, Cas13 & RNA editing and organelle base editing
Base editing, prime editing, Cas13 & RNA editing and organelle base editing
 
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptxECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
ECG Graph Monitoring with AD8232 ECG Sensor & Arduino.pptx
 
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
 
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
Best Call Girls In Sector 29 Gurgaon❤️8860477959 EscorTs Service In 24/7 Delh...
 

Multi-paradigm Coordination for MAS

  • 1. Multi-paradigm Coordination for MAS Integrating Heterogeneous Coordination Approaches in MAS Technologies Stefano Mariani Andrea Omicini {s.mariani, andrea.omicini}@unibo.it Dipartimento di Informatica – Scienza e Ingegneria (DISI) Alma Mater Studiorum – Universit`a di Bologna XVII Workshop “From Objects to Agents” (WOA 2016) Catania, Italy, 30 July 2016 Mariani & Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 1 / 37
  • 2. Outline 1 Motivation & Goal 2 State-of-Art Agent-oriented Frameworks 3 Enabling Multi-paradigm Coordination 4 Conclusive Remarks Mariani & Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 2 / 37
  • 3. Motivation & Goal Outline 1 Motivation & Goal 2 State-of-Art Agent-oriented Frameworks 3 Enabling Multi-paradigm Coordination 4 Conclusive Remarks Mariani & Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 3 / 37
  • 4. Motivation & Goal Motivation & Goal I multi-agent systems (MAS) impose heterogeneous requirements on the interaction means and paradigms e.g., message-passing vs. shared space, synchronous vs. asynchronous, proactive vs. reactive, etc. e.g., software agents vs. physical devices coordination approaches can be classified according to diverse criteria means of interaction—e.g. messages vs. tuples synchronism of interaction primitives—synchronous vs. asynchronous programming style—e.g. reactive (actors), vs. pro-active (agents) objective or subjective [OO03], depending on who is responsible for the “burden of coordination”—agents themselves or a third-party Mariani & Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 4 / 37
  • 5. Motivation & Goal Motivation & Goal II respecting agents’ autonomy is a foremost issue in design of coordination models for MAS ! reactive programming styles often lead to inversion of control ! synchronous semantics without adequate uncoupling leads agents to passively withstand the outcomes of coordination Goal provide MAS designers with seamless support to multi-paradigm coordination while preserving autonomy of agents agents deliberatively adapt coordination paradigm and interaction means based on static preference or run-time contingencies such a choice does not affect negatively other agents’ activities ⇒ focus on JADE [BPR99], Jason [BHW07], and TuCSoN [OZ99] Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 5 / 37
  • 6. State-of-Art Agent-oriented Frameworks Outline 1 Motivation Goal 2 State-of-Art Agent-oriented Frameworks 3 Enabling Multi-paradigm Coordination 4 Conclusive Remarks Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 6 / 37
  • 7. State-of-Art Agent-oriented Frameworks JADE JADE in a Nutshell I JADE JADE [BPR99] is a Java-based framework and infrastructure to develop and deploy agent-based distributed applications in compliance with FIPA standard specifications for interoperable MAS autonomy of agents is supported by the behaviour abstraction ! Java objects executed pseudo-concurrently within a single thread by a hidden non-preemptive round-robin scheduler ! behaviours switch only at completion—in the meanwhile no other behaviour can execute ! behaviours execute from the beginning every time—no way to “stop-then-resume” a behaviour at arbitrary statements Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 7 / 37
  • 8. State-of-Art Agent-oriented Frameworks JADE JADE in a Nutshell II coordination adopts the subjective stance through the agent communication channel (ACC), providing asynchronous message-passing agents have a mailbox where incoming communications wait to be pro-actively considered receive() vs. blockingReceive() for (a)synchronously retrieving messages ! “block-then-resume” pattern to avoid hindering autonomy of agents with blockingReceive()—blockingReceive() suspends the agent as a whole, method block() suspends only the caller behaviour, automatically resumed by JADE upon reception of any message Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 8 / 37
  • 9. State-of-Art Agent-oriented Frameworks JADE JADE in a Nutshell III . . . on top of which FIPA protocols (e.g. Contract Net [Smi80] and Achieve Rational Effect [Fou02]) are designed and provided as callback frameworks callback methods correspond to each interaction step (message to be received or sent) promote a reactive programming style, where agents synchronously wait for messages internally implemented abiding to the block-then-resume pattern to keep responsiveness to other interactions Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 9 / 37
  • 10. State-of-Art Agent-oriented Frameworks Jason Jason in a Nutshell I Jason Jason [BHW07] is a development framework and runtime system for BDI agents implemented in a dialect of AgentSpeak [Rao96] autonomy of agents is supported by the plan / intention BDI abstractions a plan is scheduled as soon as a triggering event occurs not directly executed “as is” but instantiated as an intention ! intentions are pseudo-concurrently executed one action each according to a single-threaded round-robin scheduler Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 10 / 37
  • 11. State-of-Art Agent-oriented Frameworks Jason Jason in a Nutshell II coordination adopts the subjective stance through an asynchronous message passing layer no explicit receive primitive involved, nor a mailbox to monitor: depending on illocutionary force of messages, reception causes different events triggering execution of plans tell primitive to add a belief to the belief base of receiver agent, causing a belief addition event handled by plans starting with +b clause head—thus messages can be either re-actively or pro-actively considered asynchronous vs. synchronous askOne primitive to query another agent’s belief base—caller intention only (not the whole agent) is suspended, then automatically resumed when possible Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 11 / 37
  • 12. State-of-Art Agent-oriented Frameworks TuCSoN TuCSoN in a Nutshell I TuCSoN TuCSoN [OZ99] is a Java-based, (logic) tuple-based coordination model and infrastructure for open, distributed MAS, providing objective coordination as service through ReSpecT tuple centres [OD01] TuCSoN preserves autonomy of agents through agent coordination contexts (ACC) [Omi02] . . . assigned to agents as they enter a TuCSoN-coordinated MAS, for uncoupling synchronism of coordination operations invocation from suspensive semantics of coordination primitives mapping operations to events asynchronously dispatched to ReSpecT tuple centres Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 12 / 37
  • 13. State-of-Art Agent-oriented Frameworks TuCSoN TuCSoN in a Nutshell II . . . and “two-phases” execution of coordination operations invocation vs. completion phase: in the former, operation request is dispatched to the target tuple centre; in the latter, its response is sent back to the invoker ! synchronism of invocation (un)couples the fate of the coordination operation w.r.t. that of the invoker agent—e.g. a suspensive Linda in [Gel85] ! if (a)synchronous invocation is deliberatively chosen by agents, they (do not) get suspended, too, if the operation gets suspended Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 13 / 37
  • 14. Enabling Multi-paradigm Coordination Outline 1 Motivation Goal 2 State-of-Art Agent-oriented Frameworks 3 Enabling Multi-paradigm Coordination 4 Conclusive Remarks Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 14 / 37
  • 15. Enabling Multi-paradigm Coordination TuCSoN4JADE: Objective Coordination for JADE TuCSoN4JADE in a Nutshell autonomy-preserving integration presented in [MOS14] ! main issue is making TuCSoN synchronous invocation mode compatible with JADE concurrency model based on behaviours direct API access hinders agents autonomy: control flow is coupled to that of coordination operations, which is harmful in case of synchronous invocation [ORV+04] ⇒ TuCSoN4JADE: bridge component suitably suspending / resuming caller behaviours depending on outcome of coordination operations http://apice.unibo.it/xwiki/bin/view/TuCSoN/4JADE Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 15 / 37
  • 16. Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason TuCSoN4Jason in a Nutshell ! main integration issue is making TuCSoN synchronous invocation semantics compatible with Jason concurrency model based on intentions direct API access – trough Jason internal actions – hinders agents autonomy as in the case of JADE ⇒ TuCSoN4Jason: fine-grained integration of TuCSoN two-phases execution with Jason intention suspension mechanism, properly suspending / resuming caller intentions depending on outcome of coordination operations http://apice.unibo.it/xwiki/bin/view/TuCSoN/4Jason Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 16 / 37
  • 17. Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason TuCSoN4Jason: Architecture I 1 custom agent architecture enabling customisation of the BDI engine hidden behind each Jason agent dispatches operation requests and responses tracks pending and completed operations 2 operation completion listener enabling TuCSoN to couple its invocation semantics with Jason intention suspension mechanism dispatches notifications of operation completion (automatically) resumes suspended intentions when their result becomes available 3 custom internal actions enabling Jason agents to request TuCSoN coordination services and inspect operations outcome provides Jason agents coordination primitives primitive getResult handles (automatic) intention suspension when result of a getter primitive (such as in) is not yet available Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 17 / 37
  • 18. Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason TuCSoN4Jason: Architecture II Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 18 / 37
  • 19. Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason TuCSoN4Jason: Flow of Interactions I 1 upon internal action call the custom agent architecture (T4JnArch) asynchronously dispatches operation request to TuCSoN 2 then it tracks pending state of operation and spawns a dedicated completion handler (TucsonResultsHandler) 3 upon operation completion the handler is notified by TuCSoN with the result 4 state of the operation is changed from “pending” to “completed” 5 if needed, the suspended intention within which getResult() was called is resumed Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 19 / 37
  • 20. Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason TuCSoN4Jason: Flow of Interactions II Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 20 / 37
  • 21. Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason TuCSoN4Jason: Implementation I Behind the scenes ! any TuCSoN4Jason internal action has an asynchronous invocation semantics, so that agents are free to choose when to risk suspension (of the caller intention only) by calling getResult() ⇒ when doing so, TuCSoN4Jason checks if operation result is available if it is, the current intention can proceed otherwise the intention gets suspended Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 21 / 37
  • 22. Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason TuCSoN4Jason: Implementation II ... // result NOT available if (!( results. containsKey (actionId ))) { Circumstance c = ts.getC (); // suspend calling intention Intention i = c. getSelectedIntention (); this. suspendIntention = true; i. setSuspended (true ); c. addPendingIntention ( jason.stdlib.suspend. SELF_SUSPENDED_INT + i.getId (), i); // track suspended intention arch. getSuspendedIntentions (). put(actionId , i); mutex.unlock (); // thread -safety return true; } ... Figure: Intention suspension when getResult() is called with no result available Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 22 / 37
  • 23. Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason TuCSoN4Jason: Implementation III // corresponding action caused suspension if (this. suspendedIntentions .containsKey(this.actionId )) { Intention suspendedIntention = this. suspendedIntentions .remove(this.actionId ); this.mutex.unlock (); // thread -safety ... // parse result Circumstance c = this.ts.getC (); Iterator String ik = c. getPendingIntentions (). keySet (). iterator (); while (ik.hasNext ()) { // scan pending intentions String k = ik.next (); if (k.startsWith(suspend. SUSPENDED_INT )) { Intention i = c. getPendingIntentions (). get(k); if (i.equals( suspendedIntention )) { // find intention i. setSuspended (false ); ik.remove (); ... // other reasoner -related stuff c. resumeIntention (i); Figure: Resuming a suspended intention when its result becomes available Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 23 / 37
  • 24. Enabling Multi-paradigm Coordination TuCSoN4Jason: Objective Coordination for Jason TuCSoN4Jason: Wrap Up TuCSoN4Jason lets Jason agents simultaneously adopt different coordination paradigms and means, depending on run-time needs, without them hindering each other nor any other ongoing interaction activities subjective coordination =⇒ Jason asynchronous message passing—handled, e.g., reactively through belief addition events (+b ) objective coordination =⇒ TuCSoN4Jason facilities synchronous TuCSoN operations =⇒ follow an operation invocation with immediate call to getResult() asynchronous TuCSoN operations pro-active programming style =⇒ call getResult() in the Jason plan when the information is needed reactive programming style =⇒ call getResult() in a parallel plan dedicated to handling operation result Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 24 / 37
  • 25. Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work Multi-paradigm ContractNet: Scenario contract net protocol (CNP) [Smi80] re-interpreted in a multi-paradigm coordination setting ! a single call-for-proposals (CFP) tuple in a shared contract-net space is more efficient than messaging each seller =⇒ tuple-based CFP ! purchase is typically a 1-to-1 interaction =⇒ message-based purchase Book trading scenario n seller agents advertise their catalogue of books m buyer agents browse such catalogues looking for books buyers start a CFP sellers reply with actual proposals buyers choose which one to accept ! concurrency property =⇒ sellers should stay reactive to CFPs in the middle of a purchase transaction—besides multiple CFPs or purchases Paradigmatic example of practical relevance of preserving autonomy while enabling multi-paradigm coordination Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 25 / 37
  • 26. Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work Multi-paradigm ContractNet: Naive Approach I no TuCSoN4Jason =⇒ just call TuCSoN API ! while the seller replies to CFPs, or carries on purchase orders, waiting for further CFPs causes suspension of the intention—due getter primitives suspensive semantics this is fine: it is exactly for this suspensive semantics that the Linda model works—thus, TuCSoN what is not-so-fine is that being the getter operation stuck, the caller agent as a whole is stuck too, and cannot schedule other intentions in the meanwhile Concurrency property is lost =⇒ autonomy of agents hindered Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 26 / 37
  • 27. Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work Multi-paradigm ContractNet: Naive Approach II Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 27 / 37
  • 28. Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work Multi-paradigm ContractNet: TuCSoN4Jason Approach I TuCSoN4Jason =⇒ call TuCSoN4Jason API ! while the seller replies to CFPs, or carries on purchase orders, . . . same as before :) again, this is fine: as before :) what is now fixed is that suspensive semantics is confined to the caller intention, by the bridge ⇒ only the caller intention is suspended, whereas other activities can carry on in the meanwhile Concurrency property holds =⇒ autonomy of agents preserved, too Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 28 / 37
  • 29. Enabling Multi-paradigm Coordination Multi-paradigm Coordination at Work Multi-paradigm ContractNet: TuCSoN4Jason Approach II Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 29 / 37
  • 30. Conclusive Remarks Outline 1 Motivation Goal 2 State-of-Art Agent-oriented Frameworks 3 Enabling Multi-paradigm Coordination 4 Conclusive Remarks Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 30 / 37
  • 31. Conclusive Remarks Which Impact? Enabling multi-paradigm coordination along a number of orthogonal dimensions of coordination objective vs. subjective stance synchronous vs. asynchronous invocation pro-active vs. reactive programming style brings about many requirements, especially whenever coordinables are allowed to change coordination paradigm and means at run-time Technologies like TuCSoN4Jason and TuCSoN4JADE are key-enablers for applications featuring distributed and heterogeneous components which depend on communication and coordination to carry out their duties require diverse coordination means depending on both their own capabilities and run-time contingencies Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 31 / 37
  • 32. References References I Rafael H. Bordini, Jomi F. H¨ubner, and Michael J. Wooldridge. Programming Multi-Agent Systems in AgentSpeak using Jason. John Wiley Sons, Ltd, October 2007. Fabio Luigi Bellifemine, Agostino Poggi, and Giovanni Rimassa. JADE–a FIPA-compliant agent framework. In 4th International Conference and Exhibition on the Practical Application of Intelligent Agents and Multi-Agent Technology (PAAM-99), pages 97–108, London, UK, 19–21 April 1999. The Practical Application Company Ltd. Foundation for Intelligent Physical Agents. FIPA Communicative Act Library Specification. http://www.fipa.org/specs/fipa00037/, 6 December 2002. David Gelernter. Generative communication in Linda. ACM Transactions on Programming Languages and Systems, 7(1):80–112, January 1985. Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 32 / 37
  • 33. References References II Stefano Mariani, Andrea Omicini, and Luca Sangiorgi. Models of autonomy and coordination: Integrating subjective objective approaches in agent development frameworks. In Lars Braubach, David Camacho, and Salvatore Venticinque, editors, Intelligent Distributed Computing VIII, volume 570 of Studies in Computational Intelligence, pages 69–79. Springer, 2014. 8th International Symposium on Intelligent Distributed Computing (IDC 2014), Madrid, Spain, 3-5 September 2014. Proceedings. Andrea Omicini and Enrico Denti. From tuple spaces to tuple centres. Science of Computer Programming, 41(3):277–294, November 2001. Andrea Omicini. Towards a notion of agent coordination context. In Dan C. Marinescu and Craig Lee, editors, Process Coordination and Ubiquitous Computing, chapter 12, pages 187–200. CRC Press, Boca Raton, FL, USA, October 2002. Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 33 / 37
  • 34. References References III Andrea Omicini and Sascha Ossowski. Objective versus subjective coordination in the engineering of agent systems. In Matthias Klusch, Sonia Bergamaschi, Peter Edwards, and Paolo Petta, editors, Intelligent Information Agents: An AgentLink Perspective, volume 2586 of Lecture Notes in Computer Science, pages 179–202. Springer Berlin Heidelberg, 2003. Andrea Omicini, Alessandro Ricci, Mirko Viroli, Marco Cioffi, and Giovanni Rimassa. Multi-agent infrastructures for objective and subjective coordination. Applied Artificial Intelligence, 18(9-10):815–831, 2004. Andrea Omicini and Franco Zambonelli. Coordination for Internet application development. Autonomous Agents and Multi-Agent Systems, 2(3):251–269, September 1999. Special Issue: Coordination Mechanisms for Web Agents. Anand S. Rao. AgentSpeak(L): BDI agents speak out in a logical computable language. In Walter Van de Velde and John W. Perram, editors, Agents Breaking Away, volume 1038 of Lecture Notes in Computer Science, pages 42–55. Springer, 1996. 7th European Workshop on Modelling Autonomous Agents in a Multi-Agent World (MAAMAW’96), Eindhoven, The Netherlands, 22-25 January 1996, Proceedings. Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 34 / 37
  • 35. References References IV Reid G. Smith. The Contract Net Protocol: High-level communication and control in a distributed problem solver. IEEE Transactions on Computers, C-29(12):1104–1113, 1980. Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 35 / 37
  • 36. Extras URLs Slides on APICe → http://apice.unibo.it/xwiki/bin/view/Talks/MulticoordWoa2016 on SlideShare → http://www.slideshare.net/andreaomicini/ multiparadigm-coordination-for-mas Paper on APICe → http://apice.unibo.it/xwiki/bin/view/Publications/MulticoordWoa2016 on CEUR → http://ceur-ws.org/Vol-????/paper ?.pdf Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 36 / 37
  • 37. Multi-paradigm Coordination for MAS Integrating Heterogeneous Coordination Approaches in MAS Technologies Stefano Mariani Andrea Omicini {s.mariani, andrea.omicini}@unibo.it Dipartimento di Informatica – Scienza e Ingegneria (DISI) Alma Mater Studiorum – Universit`a di Bologna XVII Workshop “From Objects to Agents” (WOA 2016) Catania, Italy, 30 July 2016 Mariani Omicini (UniBo) Multi-paradigm Coordination for MAS WOA 2016, 30/07/2016 37 / 37