Agent-Oriented Software Engineering
|
|
|
- Mary Page
- 10 years ago
- Views:
Transcription
1 ID2209 Distributed Artificial Intelligence and Intelligent Agents Agent-Oriented Software Engineering Mihhail Matskin: Autumn 2015
2 Lecture Outline 1. When is an agent-based solution appropriate? 2. AOSE Methodologies: 1. AAII (Kinny) 2. Gaia (Wooldridge et. al.) 3. Agent UML (Bauer et. al.) 4. Other extentions 3. Formal Methods for AOSE 4. Pitfalls in agent development
3 References - Curriculum Wooldridge: Introduction to MAS, Chapter 9 Additional reading: M. Wooldridge, N. R. Jennings, and D. Kinny. The Gaia Methodology for Agent-Oriented Analysis and Design. In Journal of Autonomous Agents and Multi-Agent Systems. 3(3): Odell et al, Representing Agent Interaction Protocols in UML fbauer, UML Class Diagrams Revisited in the Context of Agent-Based Systems Yan et al, romas: a role-based modeling method for multi-agent system
4 Terminology of Agent-Oriented Software Engineering
5 Agent-oriented Software Engineering (AOSE) Concerns methodologies to support the development and maintenance of agent systems. This is similar to methodologies that have been successful in the development of OO systems: e.g. OMT, UML
6 When is an agent-based solution most appropriate? The environment is open, or at least highly dynamic, uncertain or complex Agents are a natural metaphor Distribution of data, control and expertise Legacy systems
7 Criticisms of Existing Approaches Approaches such as object-oriented design fail to capture: An agent s flexible, autonomous problemsolving behavior The richness of an agent s interactions
8 Agent-oriented Analysis & Design Techniques An analysis and design methodology is intended to assist in: Gaining an understanding of a particular system Designing the system. Methodology Models Guidelines
9 Agent-oriented Models Agent-oriented models are intended to formalize understanding of a system under consideration. Analysis and design process Model (abstract) Implementation (concrete/ detailed)
10 Methodologies Methodologies for the analysis and design can be divided into 2 groups. Methodologies Inspired from O-O methodologies, e.g. Adapts knowledge engineering or other techniques, e.g. AAII Methodology (Kinny) Gaia (Wooldridge et. al.) Agent UML (Odell) DESIRE (Blazer et. al)
11 AAII Methodology 1 (Kinny et. al.) Aim: to construct a set of models, which when fully elaborated, define an agent system specification.
12 AAII Methodology 2 AAII Methodology External Model (concerned with the agents and relationships between them) Internal Model (concerned with the internals: beliefs, desires, intentions) Agent Model Interaction Model Agent class model Agent instance model
13 AAII Methodology 3 Methodology Identify relevant roles in domain Example Role: weather monitor Develop an agent class hierarchy i Make aware of weather j Identify responsibilities for each roles: Services required Services provided Determine goals associated with each service For each goal, determine plan and context conditions Goals: Find out current weather Make agentj aware of it Plan for Make agentj aware of it : Send message to agentj Determine belief structure of system How to represent agenti s and agentj s beliefs: temperature(x)
14 Gaia Methodology (Wooldridge et. al.) Motivation: Existing software methodologies don t support agents, in particular, interactions and agent organisations. It borrows terminology from object-oriented analysis and design. Encourages the analyst to think of building agent-based systems as a process of organisational design. Ø Societal view of agents. Reference: Wooldridge et. al
15 Gaia Methodology Gaia is: General: applicable to a range of multi-agent systems Comprehensive: macro-level (societal) and micro-level (agent) aspects of systems. Allows an analyst to go systematically from a statement of requirements to a design that is sufficient for implementation. Requirements Implementation G A I A Abstract Model details Concrete Reference: Wooldridge et. al
16 Gaia Methodology Relationships between Gaia Models Requirements statements Roles Model Interactions Model Analysis Agent Model Services Model Acquaintance Model Design Reference: Wooldridge et. al
17 Gaia Methodology Concepts Abstract Concepts (used during analysis to conceptualise the system) Concrete Concepts (used within the design process) Roles Permissions Responsibilities Agent types Services Acquaintances Liveness Properties Safety properties Protocols Activities Reference: Wooldridge et. al
18 Gaia Methodology Roles Model Role Attributes of roles Permissions Activities Responsibilities Protocols Liveliness properties Safety properties Reference: Wooldridge et. al
19 Gaia Methodology Role Schema A roles model is comprised of a set of role schema Role Schema: Description Protocols and activities Permissions Responsibilities Liveliness safety Name of Role short description of the role protocols and activities in which the role plays a part rights associated with the role liveliness responsibilities Safety responsibilities Reference: Wooldridge et. al
20 Gaia Methodology Interaction Model The links between the roles are represented in the interaction model. It contains a set of protocol definitions: an institutionalised pattern of interaction, e.g. a Dutch auction. Reference: Wooldridge et. al
21 Gaia Methodology Protocol attributes purpose: description of the interaction initiator: the role(s) responsible for starting the interaction; responder: the role(s) with which the initiator interacts; inputs: information for enacting the protocol; outputs: information supplied by/to the protocol responder; processing: description of any processing that is performed during the interaction. Reference: Wooldridge et. al
22 Gaia Methodology Protocol attributes protocol purpose initiator responder inputs Processing outputs Reference: Wooldridge et. al
23 Gaia Methodology Analysis Process Objective: to develop an understanding of the system and its structure. Steps Output 1. Identify roles Roles model 2. For each role, identify associated protocols 3. Using the protocol/interaction model as basis, elaborate role model Interaction model Fully elaborated roles model (with permissions, responsibilities, etc.) 4. Iterate 1-3 Reference: Wooldridge et. al
24 Gaia Methodology Design Process Objective: to transfer the abstract models from analysis stage into models of sufficiently low abstraction. Step Output 1. Create agent model Agent model (identifies agent types) 2. Develop service model Service model (identifies main services required to realise agent s role) 3. Develop acquaintance model from interaction model and agent model. Acquaintance model (documents the lines of communication between the agents ) Reference: Wooldridge et. al
25 Gaia Methodology Design Process agent model used for documenting various agent types that will be used in the system under development, agent instances that will realize these agent types. Instance qualifiers Qualifier Meaning n there will be exactly n instances m.. n there will be between m and n instances * there will be 0 or more instances + there will be 1 or more instances Reference: Wooldridge et. al
26 Gaia Methodology Design Process (Service model) The services model - identifies the services associated with each agent role, and specifies the main properties of these services. By a service, a function of the agent is meant. Service properties: inputs, outputs, pre-conditions, and post-conditions Pre- and post-conditions represent constraints on services derived from the safety properties of a role. The services are usually derived from the list of protocols, activities, responsibilities - the liveness properties of a role. Reference: Wooldridge et. al
27 Gaia Methodology Design Process Acquaintance models defines the communication links that exist between agent types. Represented as a graph Reference: Wooldridge et. al
28 Gaia Methodology Example To provide customers with a quote for installing a network to deliver a particular type of telecommunications service. Several departments are involved: Customer Service Dept. (CSD) Design Dept. (DD) Legal Dept. (LD) Customer Vetting (CV) Reference: Wooldridge et. al
29 Gaia Methodology Example Customer contacts CSD Capture requirements Vet Customer Map requirements to service portfolios Offer quote Design solution Offer quote Customer LD CSD DD CV Check legality
30 Gaia Methodology Example Analysis stage: Identify roles and interaction models Roles Customer (cust) Customer Handler (CH) Quote Manager (QM) Customer Vetter (CV) Network Designer (ND) Legal Advisor (LA) CSD CV DD LD
31 Operators for liveness expressions Operator Interpretation x. y x followed by y x y x or y occurs x * x occurs 0 or more times ω x x occurs infinitely often x+ x occurs 1 or more times [x] x is optional x y x and y interleaved
32 Gaia Methodology Example-role description Role Schema: CustomerHandler(CH) Description: Receives quote request from the customer and oversees process to ensure appropriate quote is returned. Protocol and Activities: AwaitCall, ProduceQuote, InformCustomer Permissions: reads supplied customerdetails // customer contact information supplied customerrequirements // what customer wants quote // completed quote or nil Responsibilities Liveness: ω CustomerHandler = (AwaitCall. GenerateQuote) GenerateQuote = (ProduceQuote. InformCustomer) Safety: true Reference: Wooldridge et. al
33 Gaia Methodology Example-role description Role Schema: QuoteManager (QM) Description: Responsible for enacting the quote process. Generates a quote or returns no quote (nil) if customer is inappropriate or service is illegal. Protocols and Activities: VetCustomer, GetCustomerRequirements, CostStandardService, CheckServiceLegality, CostBespokeService Permissions: reads supplied customerdetails //customer contact information supplied customerrequirements // detailed service //requirements creditrating // customer's credit rating serviceislegal // boolean for bespoke requests generates quote // completed quote or nil Responsibilities Liveness: QuoteManager = QuoteResponse QuoteResponse = (VetCustomer GetCustomerRequirements) (VetCustomer GetCustomerRequirements).CostService CostService = CostStandardService (CheckServiceLegality CostBespokeService) Safety: creditrating = bad quote = nil serviceislegal = false quote = nil Reference: Wooldridge et. al
34 Gaia Methodology Example Interaction Model: For role Quote Manager (QM) GetCustomerRequirements Cust CheckServiceLegality QM VetCustomer GetBespokeService LA CV ND
35 Gaia Methodology Example-protocol definition GetCustomerRequirements GetBespokeService From: Wooldridge et. al
36 Gaia Methodology Example-protocol definition VetCustomer CheckServiceLegality From: Wooldridge et. al
37 Gaia Methodology Example: agent model CustomerAgent + CustomerServiceDivisionAgent 1 Customer CustomerHandler QuoteManager VetCustomerAgent NetworkDesignerAgent LegalAdvisorAgent CustomerVetter NetworkDesigner LegalAdvisor Reference: Wooldridge et. al
38 Gaia Methodology Example- service model for QM Service Inputs Outputs Pre-condition Post-condition obtain customer customerdetails customerrequirements true true requirements vet customer customerdetails creditrating customer vetter creditrating nil available check customer creditrating continuationdecision continuationdecision continuationdecision satisfactory =nil nil check service type customerrequirements servicetype creditrating bad servicetype {standard, bespoke} produce standard servicetype, quote servicetype=standard quote nil service costing customerrequirements ^ quote = nil produce bespoke servicetype, quote, serviceislegal servicetype = (quote nil) v service costing customerrequirements bespoke ^ quote = (quote = nil ^ nil ^ serviceislegal not serviceislegal) inform customer customerdetails, quote true customers know quote From: Wooldridge et. al
39 Gaia Methodology Example- acquaintance model CustomerAgent CustomerServiceDevisionAgent VetCustomerAgent NetworkDesignAgent LegalAdvisorAgent
40 Gaia Methodology Shortcomings of Gaia Organisation structure is static cannot be changed at run-time. Abilities of agents and services they provide are also static. Suitable for a small number of agent types. Protocols do not contain sufficient details
41 Agent UML Rationale Agent UML is an extension of UML. It is not a methodology, rather a language for documenting models of systems. Rationale for agent UML: UML is insufficient for modeling agents for the following reasons: Compared to objects, agents are active. Agents do not only act in isolation, but in cooperation and coordination with other agents.
42 Extensions interaction protocols, agent roles, multithreaded lifelines, extended UML message semantics, nested and interleaved protocols, protocol templates, extended class diagrams extended statechart diagrams
43 Agent UML Proposed Modifications Support for expressing concurrent threads of interaction, enabling UML to model agent protocols such as the CNP. A notion of role to allow an agent playing several roles.
44 Agent UML Agent Interaction Protocols An agent interaction protocol describes A communication pattern with Allowed sequences of messages between agents having different roles Constraints on the contents of messages A semantic that is consistent with the communicative act within a communication pattern Ø Thus, the proposed modifications are aimed at supporting interaction protocols.
45 A protocol diagram an example Airlines/ Auctioner:Seller 1 inform(start-auction, departure,arrival) AuctionPaticipants: Consumer n start cfp time 1 cfp(initial-price) n n 1 1 k {m>=0}not-understood(syntax) propose(price,departure, arrival) reject-proposal(wrong-price) x accept-proposal(correct-price) m x k n start cfp time +1 min Deadline 1 {n>=1}cfp(new-price) x 1 1/inform(end-of-auction) n 1 {0..1}[actualprice>=reserved_price] 1 2/request(pay-price) Reference: Bauer, B., Muller, J. P. and Odell, J.
46 Elements of protocol diagram instance-1 / role-1... role-m : class x AND OR XOR Agent Agent Agent Agent x x x
47 Iterated Contract Net Protocol Reference:
48 Agent UML (a generic AIP template) Airlines/ Auctioner:Seller 1 inform AuctionPaticipants: Consumer n Auctioner, Participant inform-start-of-auction:inform cfp-1:cfp, not-understood*:not-understood, propose*:propose, reject-proposal*:reject-proposal, accept-proposal*:accept-proposal, cfp-2:cfp, inform*:inform, request*:request start cfp time 1 1 cfp-1 n n {m>=0}not-understood m n x propose deadline k 1 reject-proposal k x accept-proposal 1 {n>=1}cfp-2 x 1 1/inform n 1 {0..1}[actualprice>=reserved_price] 1 2/request Adopted from: Bauer, B., Muller, J. P. and Odell, J.
49 Protocol instantiation FIPA-English-Auction-Protocol < UML-Airlines / Auctioneer : Seller, AuctionParticipants : Consumer inform(start-auction, departure, arrival), cfp(initial-price), not-understood(syntax-error), not-understood(ontology), propose(pay-price), reject-proposal(wrong-price), accept-proposal(correct-price), cfp(increased-price), inform(end-of-action), request(pay-price, fetch-ticket) >
50 AgentUML (Odel et al) representing interleaved protocols Reference: Bauer, B., Muller, J. P. and Odell, J.
51 Agent Class Diagrams agent-class-name/rolename1, state-description methods actions capabilities, service description, supported protocols Agent CA-1/ protocol CA-1/ protocol CA-2/ protocol agent-head-automata-name CA-2/ protocol default not-understood Adopted from: Bauer, B.
52 Agent-head-automata Adopted from: Bauer, B.
53 RoMAS: A ROLE-BASED MODELING METHOD FOR MULTI-AGENT SYSTEM The main development process is as follows: (1) Capture use cases; (2) Identify roles from use cases; (3) Construct role organization; (4) For each role, if the appropriate agent does not exist, then go to (5); else I. Bind roles to agents II. Describe dynamic properties of bind relation between agents and roles III. Go to (6) (5) Generate agents according to roles; Go to(4).i. (6) Generate codes for agents with roles bound; Adopted from: Yan et al.
54 RoMAS: A ROLE-BASED MODELING METHOD FOR MULTI-AGENT SYSTEM (identify roles) Adopted from: Yan et al.
55 RoMAS: A ROLE-BASED MODELING METHOD FOR MULTI-AGENT SYSTEM (construct role organizations) Adopted from: Yan et al.
56 RoMAS: A ROLE-BASED MODELING METHOD FOR MULTI-AGENT SYSTEM (bind roles to agents) Adopted from: Yan et al.
57 Formal Methods in AOSE What role is played by logic in the development of agent systems? It can be used for: Specification of a system Directly (automatically) programming a system Once specified, the system must be implemented. 3 Possibilities: 1. Manual refinement of the specifications. 2. Direct execution of the specification. 3. Compilation, transform specifications into code using some automatic synthesis process. Verification of a system Once the system is developed, we need to show that the system is correct with respect to the specification.
58 Pitfalls of Agent Development 1 While agent-based systems are becoming increasingly well understood, multi-agent system development is not. (Wooldridge & Jennings, 1999) Little effort has been devoted to understanding the pragmatics of multi-agent systems development.
59 Pitfalls of Agent Development Political Management Conceptual Analysis and design Macro (society) level You can oversell agents or fail to see where agents may usefully be applied. You don t know why you want agents or what your agents are good for. E.g. Starting an agent project without any clear goals. You believe that agents are a silver bullet. While developing an agent system, the % of the system that is agent-specific (e.g. Negotiation or coordination) is very small. You see agents everywhere, too many agents. Micro (agent) level Implementation You decide you want your own architecture, you use too much AI. You ignore de facto standards (e.g. FIPA in agent communication)
60 Summary AOSE methodologies are close to existing Software Engineering methodologies (e.g. OO) methodologies. AOSE methodologies are inspired by either OO techniques or knowledge engineering techniques. Main difference is focus on interaction and behavior
61 Next Lecture: Agent Theory Wooldridge: Introduction to MAS, Chapter 17
Agent-Oriented Software Engineering PORTO Methodology AIAD 2013/2014. António Castro and Eugénio Oliveira
Agent-Oriented Software Engineering PORTO Methodology AIAD 2013/2014 António Castro and Eugénio Oliveira NIAD&R Distributed Artificial Intelligence and Robotics Group 1 Contents What is AOSE? Main Existing
An Investigation of Agent Oriented Software Engineering Methodologies to Provide an Extended Methodology
An Investigation of Agent Oriented Software Engineering Methodologies to Provide an Extended Methodology A.Fatemi 1, N.NematBakhsh 2,B. Tork Ladani 3 Department of Computer Science, Isfahan University,
The Tropos and MaSE Agent-Oriented Software Engineering Methodologies. Msury Mahunnah, Tallinn University of Technology
The Tropos and MaSE Agent-Oriented Software Engineering Methodologies Msury Mahunnah, Tallinn University of Technology Mailing list for the course [email protected] You can join at http://lists.ttu.ee/mailman/listinfo/aine.aom
Agent-based University Library System
_ Course Number: SENG 609.22 Session: Fall, 2004 Course Name: Agent-based Software Engineering Department: Electrical and Computer Engineering Document Type: Project Report Agent-based University Library
How To Develop A Multi Agent System (Mma)
S-Tropos: An Iterative SPEM-Centric Software Project Management Process Yves Wautelet, Manuel Kolp, Youssef Achbany IAG Institut d Administration et de Gestion, ISYS Unité de Systèmes d Information, Université
Business-Driven Software Engineering Lecture 3 Foundations of Processes
Business-Driven Software Engineering Lecture 3 Foundations of Processes Jochen Küster [email protected] Agenda Introduction and Background Process Modeling Foundations Activities and Process Models Summary
Chap 1. Introduction to Software Architecture
Chap 1. Introduction to Software Architecture 1. Introduction 2. IEEE Recommended Practice for Architecture Modeling 3. Architecture Description Language: the UML 4. The Rational Unified Process (RUP)
Automated Haggling: Building Artificial Negotiators. Nick Jennings
Automated Haggling: Building Artificial Negotiators Nick Jennings Intelligence, Agents, Multimedia (IAM) Group, Dept. of Electronics and Computer Science, University of Southampton, UK. [email protected]
4. Multiagent Sys stems Design. Part 2: The PROMETHEUS methodology.
4. Multiagent Systems Design Part 2: Multiagent Syste ems (SMA-UPC) https://kemlg.upc.edu The PROMETHEUS methodology. Javier Vázquez-Salceda SMA-UPC Methodological Extensions to Object-Oriented Approaches
In this Lecture you will Learn: Systems Development Methodologies. Why Methodology? Why Methodology?
In this Lecture you will Learn: Systems Development Methodologies What a systems development methodology is Why methodologies are used The need for different methodologies The main features of one methodology
The Agent Modeling Language (AMOLA)
The Agent Modeling Language (AMOLA) Nikolaos Spanoudakis 1,2 and Pavlos Moraitis 2 1 Technical University of Crete, Department of Sciences, University Campus, 73100, Kounoupidiana, Greece [email protected]
Evaluating Agent-Oriented Software Engineering Methodologies
Evaluating Agent-Oriented Software Engineering Methodologies Abdulsalam Alarabeyyat Information Technology Department (IT) Faculty of Prince Abdullah Bin Ghazi of Science and Information Technology Al-Balqa
Advanced Service Creation: Bridging the Gap Between Requirements Elicitation and Service Design
Advanced Service Creation: Bridging the Gap Between Requirements Elicitation and Service Design Dionisis X. Adamopoulos 1, Constantine A. Papandreou 2 1 University of Piraeus, Greece and Centre for Communication
Software Development Methodologies
Software Development Methodologies Lecturer: Raman Ramsin Lecture 7 Integrated Object-Oriented Methodologies: OPEN and FOOM 1 Object-oriented Process, Environment and Notation (OPEN) First introduced in
Table of Contents. CHAPTER 1 Web-Based Systems 1. CHAPTER 2 Web Engineering 12. CHAPTER 3 A Web Engineering Process 24
Table of Contents CHAPTER 1 Web-Based Systems 1 The Web 1 Web Applications 2 Let s Introduce a Case Study 3 Are WebApps Really Computer Software? 4 Are the Attributes of WebApps Different from the Attributes
The Workflow Management Coalition Specification Workflow Management Coalition Terminology & Glossary
The Workflow Management Coalition Specification Workflow Management Coalition Terminology & Glossary Workflow The automation of a business process, in whole or part, during which documents, information
Building Service-oriented User Agents using a Software Product Line Approach. Ingrid Oliveira de Nunes [email protected]
Building Service-oriented User Agents using a Software Product Line Approach Ingrid Oliveira de Nunes [email protected] 2 Summary Introduction Objectives Integration of SOA, MAS and SPL Related Work
The multi agent paradigm and organizational abstractions in construction e-business
icccbe 2010 Nottingham University Press Proceedings of the International Conference on Computing in Civil and Building Engineering W Tizani (Editor) The multi agent paradigm and organizational abstractions
Agent-Based Software and Practical Case of Agent-Based Software Development
Agent-Based Software and Practical Case of Agent-Based Software Development Course 2008/2009 SUBJECTS: AGENT-BASED SOFTWARE and PRACTICAL CASE OF AGENT-BASED SOFTWARE DEVELOPMENT EUROPEAN MASTER on SOFTWARE
Using UML Part Two Behavioral Modeling Diagrams
UML Tutorials Using UML Part Two Behavioral Modeling Diagrams by Sparx Systems All material Sparx Systems 2007 Sparx Systems 2007 Page 1 Trademarks Object Management Group, OMG, Unified Modeling Language,
1.1 Survey s scope and motivation
Evaluation of Agent Oriented Software Engineering Main Approaches Salaheddin J. Juneidi, George A. Vouros Department of Information and Communication Systems Engineering School of Sciences University of
A KNOWLEDGE BASE FOR KNOWLEDGE-BASED MULTIAGENT SYSTEM CONSTRUCTION
National Aerospace and Electronics Conference (NAECON) Dayton, OH, October 10-12, 2000. A KNOWLEDGE BASE FOR KNOWLEDGE-BASED MULTIAGENT SYSTEM CONSTRUCTION MARC J. RAPHAEL 1 and SCOTT A. DELOACH 2 1 Space
Design by Contract beyond class modelling
Design by Contract beyond class modelling Introduction Design by Contract (DbC) or Programming by Contract is an approach to designing software. It says that designers should define precise and verifiable
Object oriented design process
Unit IV Design Object oriented design process 1.Apply design axioms to design classes 1.1 Refine and complete the static UML class diagram 1.2 Iterate and refine again 2. Design the access layer 2.1 create
Jairson Vitorino. PhD Thesis, CIn-UFPE February 2009. Supervisor: Prof. Jacques Robin. Ontologies Reasoning Components Agents Simulations
CHROME: A Model-Driven Component- Based Rule Engine Jairson Vitorino PhD Thesis, CIn-UFPE February 2009 Supervisor: Prof. Jacques Robin Ontologies Reasoning Components Agents Simulations Contents 1. Context
Principles of integrated software development environments. Learning Objectives. Context: Software Process (e.g. USDP or RUP)
Principles of integrated software development environments Wolfgang Emmerich Professor of Distributed Computing University College London http://sse.cs.ucl.ac.uk Learning Objectives Be able to define the
Lecture 3 Topics on Requirements Engineering
Lecture 3 Topics on Requirements Engineering Some material taken from the Tropos project at U of T Copyright Yijun Yu, 2005 Course information Let s vote Course Project/Final Exam 50-50 or 60-40? Midterm/Final
Software Engineering UNIT -1 OVERVIEW
UNIT -1 OVERVIEW The economies of ALL developed nations are dependent on software. More and more systems are software controlled. Software engineering is concerned with theories, methods and tools for
Business Modeling with UML
Business Modeling with UML Hans-Erik Eriksson and Magnus Penker, Open Training Hans-Erik In order to keep up and be competitive, all companies Ericsson is and enterprises must assess the quality of their
Comparing the Testing Approaches of Traditional, Object-Oriented and Agent- Oriented Software System
Comparing the Testing Approaches of Traditional, Object-Oriented and Agent- Oriented Software System N.Sivakumar 1 and K.Vivekanandan 2 Department of computer Science and Engineering Pondicherry Engineering
The Service Revolution software engineering without programming languages
The Service Revolution software engineering without programming languages Gustavo Alonso Institute for Pervasive Computing Department of Computer Science Swiss Federal Institute of Technology (ETH Zurich)
3C05: Unified Software Development Process
3C05: Unified Software Development Process 1 Unit 5: Unified Software Development Process Objectives: Introduce the main concepts of iterative and incremental development Discuss the main USDP phases 2
JADE: Java Agent Development Framework What is it? How can I use it?
JADE: Java Agent Development Framework What is it? How can I use it? Based on Online documentation of Jade http://jade.tilab.com/ 1 Overview Agent Communication Language Jade Features The agent Platform
Abstraction in Computer Science & Software Engineering: A Pedagogical Perspective
Orit Hazzan's Column Abstraction in Computer Science & Software Engineering: A Pedagogical Perspective This column is coauthored with Jeff Kramer, Department of Computing, Imperial College, London ABSTRACT
Journal of Information Technology Management SIGNS OF IT SOLUTIONS FAILURE: REASONS AND A PROPOSED SOLUTION ABSTRACT
Journal of Information Technology Management ISSN #1042-1319 A Publication of the Association of Management SIGNS OF IT SOLUTIONS FAILURE: REASONS AND A PROPOSED SOLUTION MAJED ABUSAFIYA NEW MEXICO TECH
Contents. Introduction and System Engineering 1. Introduction 2. Software Process and Methodology 16. System Engineering 53
Preface xvi Part I Introduction and System Engineering 1 Chapter 1 Introduction 2 1.1 What Is Software Engineering? 2 1.2 Why Software Engineering? 3 1.3 Software Life-Cycle Activities 4 1.3.1 Software
Execution of A Requirement Model in Software Development
Execution of A Requirement Model in Software Development Wuwei Shen, Mohsen Guizani and Zijiang Yang Dept of Computer Science, Western Michigan University {wwshen,mguizani,zijiang}@cs.wmich.edu Kevin Compton
CS314: Course Summary
CS314: Course Summary Prof. Robert B. France Dept. of Computer Science Colorado State University Robert B. France 1 1 Software Development Issues Explored - 1 Software engineering basics Why do we need
Chapter 4: Design Principles I: Correctness and Robustness
Chapter 4: Design Principles I: Correctness and Robustness King Fahd University of Petroleum & Minerals SWE 316: Software Design & Architecture Semester: 072 Objectives To introduce two design principles
Kirsten Sinclair SyntheSys Systems Engineers
Kirsten Sinclair SyntheSys Systems Engineers Kirsten Sinclair SyntheSys Systems Engineers Spicing-up IBM s Enterprise Architecture tools with Petri Nets On Today s Menu Appetiser: Background Starter: Use
Secure Semantic Web Service Using SAML
Secure Semantic Web Service Using SAML JOO-YOUNG LEE and KI-YOUNG MOON Information Security Department Electronics and Telecommunications Research Institute 161 Gajeong-dong, Yuseong-gu, Daejeon KOREA
Object Oriented Design
Object Oriented Design Kenneth M. Anderson Lecture 20 CSCI 5828: Foundations of Software Engineering OO Design 1 Object-Oriented Design Traditional procedural systems separate data and procedures, and
Sequence Diagrams. Massimo Felici. Massimo Felici Sequence Diagrams c 2004 2011
Sequence Diagrams Massimo Felici What are Sequence Diagrams? Sequence Diagrams are interaction diagrams that detail how operations are carried out Interaction diagrams model important runtime interactions
ONTOLOGY BASED FEEDBACK GENERATION IN DESIGN- ORIENTED E-LEARNING SYSTEMS
ONTOLOGY BASED FEEDBACK GENERATION IN DESIGN- ORIENTED E-LEARNING SYSTEMS Harrie Passier and Johan Jeuring Faculty of Computer Science, Open University of the Netherlands Valkenburgerweg 177, 6419 AT Heerlen,
Programming Language Constructs as Basis for Software Architectures
Programming Language Constructs as Basis for Software Architectures 1 From individual parts to components In the 50s: Machine/Assembler programs: bound to specific hardware In the 60s-70s: Higher programming
Prometheus: A Methodology for Developing Intelligent Agents
Prometheus: A Methodology for Developing Intelligent Agents Lin Padgham and Michael Winikoff RMIT University, GPO Box 2476V, Melbourne, AUSTRALIA Phone: +61 3 9925 2348 {linpa,winikoff}@cs.rmit.edu.au
Fundamentals of Java Programming
Fundamentals of Java Programming This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors
CS 389 Software Engineering. Lecture 2 Chapter 2 Software Processes. Adapted from: Chap 1. Sommerville 9 th ed. Chap 1. Pressman 6 th ed.
CS 389 Software Engineering Lecture 2 Chapter 2 Software Processes Adapted from: Chap 1. Sommerville 9 th ed. Chap 1. Pressman 6 th ed. Topics covered Software process models Process activities Coping
Distributed Database for Environmental Data Integration
Distributed Database for Environmental Data Integration A. Amato', V. Di Lecce2, and V. Piuri 3 II Engineering Faculty of Politecnico di Bari - Italy 2 DIASS, Politecnico di Bari, Italy 3Dept Information
To introduce software process models To describe three generic process models and when they may be used
Software Processes Objectives To introduce software process models To describe three generic process models and when they may be used To describe outline process models for requirements engineering, software
Foundations of Model-Driven Software Engineering
Model-Driven Software Engineering Foundations of Model-Driven Software Engineering Dr. Jochen Küster ([email protected]) Contents Introduction to Models and Modeling Concepts of Model-Driven Software
A Methodology for the Development of New Telecommunications Services
A Methodology for the Development of New Telecommunications Services DIONISIS X. ADAMOPOULOS Centre for Communication Systems Research School of Elec. Eng., IT and Mathematics University of Surrey Guildford
PROJECT MANAGEMENT METHODOLOGY OF OBJECT- ORIENTED SOFTWARE DEVELOPMENT
PROJECT MANAGEMENT METHODOLOGY OF OBJECT- ORIENTED SOFTWARE DEVELOPMENT Ing. David BEDNÁŘ, Doctoral Degree Programme (2) Dept. of Information Systems, FIT, BUT E-mail: [email protected] Supervised by:
Autonomy for SOHO Ground Operations
From: FLAIRS-01 Proceedings. Copyright 2001, AAAI (www.aaai.org). All rights reserved. Autonomy for SOHO Ground Operations Walt Truszkowski, NASA Goddard Space Flight Center (GSFC) [email protected]
ISSUES OF STRUCTURED VS. OBJECT-ORIENTED METHODOLOGY OF SYSTEMS ANALYSIS AND DESIGN
ISSUES OF STRUCTURED VS. OBJECT-ORIENTED METHODOLOGY OF SYSTEMS ANALYSIS AND DESIGN Mohammad A. Rob, University of Houston-Clear Lake, [email protected] ABSTRACT In recent years, there has been a surge of
Using UML to Model Relational Database Operations
Using UML to Model Relational Database Operations Eunjee Song Shuxin Yin Indrakshi Ray Computer Science Department Colorado State University Fort Collins, CO 80523, USA Email: song, yin, iray @cs.colostate.edu
How To Develop A Multiagent System
Towards a Comprehensive Agent-Oriented Software Engineering Methodology Dissertation vorgelegt dem Fachbereich Wirtschaftswissenschaften, der Universität Duisburg-Essen (Campus Essen) von Tawfig M. Abdelaziz,
Chapter 10 Practical Database Design Methodology and Use of UML Diagrams
Chapter 10 Practical Database Design Methodology and Use of UML Diagrams Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 10 Outline The Role of Information Systems in
Environment Programming in Multi-Agent Systems An Artifact-Based Perspective
Noname manuscript No. (will be inserted by the editor) Environment Programming in Multi-Agent Systems An Artifact-Based Perspective Alessandro Ricci Michele Piunti Mirko Viroli Received: date / Accepted:
How To Understand The Difference Between Terminology And Ontology
Terminology and Ontology in Semantic Interoperability of Electronic Health Records Dr. W. Ceusters Saarland University Semantic Interoperability Working definition: Two information systems are semantically
Intelligent Agents. Based on An Introduction to MultiAgent Systems and slides by Michael Wooldridge
Intelligent Agents Based on An Introduction to MultiAgent Systems and slides by Michael Wooldridge Denition of an Agent An agent is a computer system capable of autonomous action in some environment, in
Information Broker Agents in Intelligent Websites
Information Broker Agents in Intelligent Websites Catholijn M. Jonker, Jan Treur Vrije Universiteit Amsterdam, Department of Artificial Intelligence De Boelelaan 1081a, 1081 HV Amsterdam, The Netherlands
Design methods. List of possible design methods. Functional decomposition. Data flow design. Functional decomposition. Data Flow Design (SA/SD)
Design methods List of possible design methods Functional decomposition Data Flow Design (SA/SD) Design based on Data Structures (JSD/JSP) OO is good, isn t it Decision tables E-R Flowcharts FSM JSD JSP
Agent-Oriented Software Development
Agent-Oriented Software Development John Mylopoulos University of Toronto SETN 2002, Thessaloniki, April 11-12, 2002 2002 John Mylopoulos Thessaloniki -- 1 What is Software? An engineering artifact, designed,
Use Cases. Reference: Craig Larman, Applying UML and Patterns, Ch. 6
Use Cases Reference: Craig Larman, Applying UML and Patterns, Ch. 6 Use Case What it is: Text story Widely used to discover and record (mostly functional) requirements What is it about: Some actor(s) using
ONTODESIGN; A DOMAIN ONTOLOGY FOR BUILDING AND EXPLOITING PROJECT MEMORIES IN PRODUCT DESIGN PROJECTS
ONTODESIGN; A DOMAIN ONTOLOGY FOR BUILDING AND EXPLOITING PROJECT MEMORIES IN PRODUCT DESIGN PROJECTS DAVY MONTICOLO Zurfluh-Feller Company 25150 Belfort France VINCENT HILAIRE SeT Laboratory, University
