UC Berkeley UC Berkeley Electronic Theses and Dissertations

Total Page:16

File Type:pdf, Size:1020Kb

UC Berkeley UC Berkeley Electronic Theses and Dissertations UC Berkeley UC Berkeley Electronic Theses and Dissertations Title Mobile Reactive Systems over Bigraphical Machines - A Programming Model and its Implementation Permalink https://escholarship.org/uc/item/830795dx Author Pereira, Eloi Teixeira Publication Date 2015 Peer reviewed|Thesis/dissertation eScholarship.org Powered by the California Digital Library University of California Mobile Reactive Systems over Bigraphical Machines - A Programming Model and its Implementation by El´oiTeixeira Pereira A dissertation submitted in partial satisfaction of the requirements for the degree of Doctor of Philosophy in Engineering - Civil and Environmental Engineering in the Graduate Division of the University of California, Berkeley Committee in charge: Professor Raja Sengupta, Chair Professor Edward Lee Professor Alexandre Bayen Summer 2015 Mobile Reactive Systems over Bigraphical Machines - A Programming Model and its Implementation Copyright 2015 by El´oiTeixeira Pereira 1 Abstract Mobile Reactive Systems over Bigraphical Machines - A Programming Model and its Implementation by El´oiTeixeira Pereira Doctor of Philosophy in Engineering - Civil and Environmental Engineering University of California, Berkeley Professor Raja Sengupta, Chair In this dissertation we address the problem of bridging reactive programs and mobile computing machinery embedded in physical spaces with dynamic structure. We propose the BigActor Model as a bridging model between programs and logical-space models. The BigActor model [1] combines Hewitt and Agha's Actor model [2] for specifying concurrent reactive programs with Robin Milner's Bigraphical Model [3] for specifying the location and connectivity of the computing machines. The BigActor Model makes location and connectiv- ity first-class citizens in distributed machines. This is analogous to another bridging model, the von Neumann machine, which makes first-class citizens of memory, instructions, and their sequentiality. The BigActor Programming Language (BAL) is an implementation of the BigActor Model. It has a runtime system named the BigActor Runtime System (BARS). The BARS targets an abstract machine (bigraphs). The abstract machine has to be real- ized on a physical space of mobile and distributed computing machines. The realization is produced by the Logical-Space Execution Engine (LSEE), which bridges bigraphs with the physical space. The Logical-Space Runtime System (LSRS) extends BARS with LSEE so that programs written in BAL can seamlessly execute over physical spaces. The second part of this dissertation is concerned with the formalization and implementa- tion of the interactions between logical spaces and physical spaces. First, we approach this problem formally, by introducing the logical-space computing semantics. In logical-space computing, spatial agents operate over logical-space models while the runtime system is in charge of interacting with the physical space. We presented an implementation that follows the logical-space computing semantics. The LSRS uses the LSEE to generate logical-space models using bigraphs. The physical space is modelled using polygons defined using GPS coordinates. The spatial agents are bigActors. Our implementation programs robots and sensors in logical-space to execute an oil-spill monitoring exercise in the Atlantic. BigActor programs execute over BARS, which interacts with physical spaces through the LSEE. LSEE executes over the Robot Operating System (ROS) - an open-source middleware for robotics. The physical machinery used in the demonstration consisted of one Air Force UAV, three 2 ground control stations, four drifters that broadcast their position using AIS, and one Navy vessel equipped with a small speedboat. The Portuguese Navy emulated the oil-spill by releasing 100kg of popcorn in the ocean. i To my parents Lourdes and Artur ii Contents Contents ii List of Figures iv List of Tables vii 1 Introduction 1 1.1 Models bridging programs and machines . 4 1.2 Spatial Models . 5 1.3 Spatial programming models . 7 I Reactive programming on bigraphical machines 10 2 Observing and Controlling Bigraphs 11 2.1 Bigraphical formalism - a review . 11 2.2 Querying for local observations . 20 2.3 Local bigraphical reaction rules . 24 2.4 Final remarks . 25 3 BigActors 27 3.1 Introduction . 27 3.2 Actor model of computation - review . 29 3.3 BigActor Model . 34 3.4 BigActors Operational semantics . 38 3.5 Communication back-channelling . 50 3.6 Correctness of BigActor Model Semantics . 52 3.7 Final remarks . 58 4 BigActor Programming Language 59 4.1 What is an Embedded DSL . 60 4.2 Scala Programming Language . 60 4.3 BARS - The BigActor Runtime System . 63 iii 4.4 A simulation environment for BigActors . 68 4.5 A case study in mobile robotics . 71 4.6 Final remarks . 77 II Bridging logical and physical machines 80 5 Logical-Space Computing 81 5.1 Introduction . 81 5.2 Spatial Structures . 84 5.3 Bigraphs and Polygons . 85 5.4 Consistency of spatial structures . 89 5.5 Logical-Space Computing Semantics . 91 5.6 Correctness of control actions . 95 5.7 Using the semantics to enforce local consistency . 99 5.8 Final remarks . 102 6 Case study: oil-spill monitoring mission 104 6.1 The bilge dumping problem . 104 6.2 Vehicles and Sensors . 109 6.3 Logical-Space Runtime System . 110 6.4 Logical-Space Execution Engine . 111 6.5 Final remarks . 119 7 Conclusions 121 Bibliography 123 iv List of Figures 1.1 A bridging model between programs and machines with dynamic structure. 2 2.1 Example of a bigraph. 12 2.2 Placing and Linking graphs of the bigraph of Figure 2.1. 12 8 2.3 Example of a bigraph from Bg(Kcity). 15 2.4 Composition of the bigraph streetMap with the bigraph networkInf. 17 2.5 Abstract BBRs MOVE that moves a Smart node from its current location to a Street node , and CONNECT that connects the Smart node to a Wlan node. 18 2.6 Example of the application of the MOVE reaction rule. 19 2.7 A bigraph trace resulting from applying the BRRs MOVE(sp,street1), MOVE(sp,street3), and CONNECT(sp,wlan0). .............................. 20 2.8 BigActor observing the street map using query CHILDREN(PARENT(HOST)). 21 3.1 A pictorial representation of a bigActor system. 28 3.2 Specification of the bigActor system for Example 3.1. 29 3.3 Execution trace for the Example 3.1. 30 3.4 The Actor Model. 31 3.5 Grammar for actors syntax. 32 3.6 Actor operational semantics. 32 3.7 app and social actors. 34 3.8 Execution trace of the actor system fapp; socialg. 35 3.9 Actor system for Example 3.2 with new actors app, smartphone, and env. 36 3.10 BigActor system for scenario presented in Example 3.3. 37 3.11 BRRs MOVE HOST TO(Loc) and CONNECT HOST TO(Wlan). 38 3.12 Grammar for bigActors syntax. 39 3.13 BigActors operational semantics. 40 3.14 BigActor system for scenario presented in Example 3.5. 42 3.15 BigActors of Figure 3.14 embedded in the bigraph of Figure 2.3. 42 3.16 Execution trace for the bigActor system of Figure 3.14. 44 3.17 Execution trace over the respective Bigraph Reactive System. 45 3.18 Actor system synthesized to produce the projected trace of Figure 3.16. 49 B0 B0 3.19 Areas of influence Aapp2 and Asocial2......................... 51 v 3.20 BigActor grabberBA.................................. 53 3.21 Example of an execution of grabberBA leading to an unsafe configuration. 53 3.22 BigActors grabberBA0 and grabberBA1....................... 54 3.23 Example of an execution of multiple bigActors leading to an unsafe configuration. 54 4.1 A simple actor class and its instantiation and invocation. 61 4.2 A simple actor instantiated and invoked using the actor method. 62 4.3 Remote actor instantiation. 62 4.4 Remote actor selection and use. 62 4.5 BigActor Runtime System. 63 4.6 Definition of BigActor class. 64 4.7 Instantiation and invocation of a BigActor. .................... 64 4.8 Instantiation and invocation of a BigActor. .................... 65 4.9 Algebraic data type BigActorSchdlAPI that defines a set of messages to interact with BigActorSchdl.................................. 66 4.10 Code skeleton for BigActorSchdl. ......................... 66 4.11 Algebraic data type BigraphManagerAPI that defines a set of messages to interact with BigraphManager................................. 67 4.12 Remote bigActor registering, selection and use. 68 4.13 Remote bigActor instantiation. 68 4.14 BGM grammar. 69 4.15 Term specifying the bigraph of Figure 2.3 . 69 4.16 BigActor Runtime Syste on BigMC. 70 4.17 Example of a bigraph generation for the mobile robotics case study. 72 4.18 BGM term for the bigraph depicted in Figure 4.17. 73 4.19 Abstract BRRs modelling the set of control actions. 74 4.20 Abstract BRRs modelling the set of environment actions. 74 4.21 BigActor specifying the oil-spill monitoring mission. 75 4.22 Definition of track oilSpills............................ 76 4.23 Definition of sample spill.............................. 76 4.24 Definition of ais receiver.............................. 77 4.25 Timeline for an exectuion of the BigActor system that specifies the oil-spill mon- itoring example. 78 4.26 Definition of broadcast command that broadcasts a message to all bigActors hosted at nodes linked to the host of the bigActors executing the command. 79 5.1 Physical-space execution for Example 5.1. 82 5.2 Symbolical-space execution for Example 5.1. 83 5.3 BRRs that generates the symbolic-space execution depicted in Figue 5.2. 83 5.4 Logical space and physical space. 86 5.5 Logical-space execution for Example 5.1. 87 5.6 Logical-space execution for Example 5.5. 89 vi 5.7 Inconsistent structure. 90 5.8 Spatial agent modelled as a bigActor. 96 5.9 Logical-space execution for the spatial agent of Figure 5.8. 96 5.10 Example of a feedback specified as a bigActor. 101 6.1 CleanSeaNet SAR image with evidences of bilge dumping acquired in June 2009 off the coast of Spain.
Recommended publications
  • A Networked Robotic System and Its Use in an Oil Spill Monitoring Exercise
    A Networked Robotic System and its Use in an Oil Spill Monitoring Exercise El´oiPereira∗† Co-authors: Pedro Silvay, Clemens Krainerz, Christoph Kirschz, Jos´eMorgadoy, and Raja Sengupta∗ cpcc.berkeley.edu, eloipereira.com [email protected] Swarm at the Edge of the Could - ESWeek'13, Montreal, Canada September 29, 2013 ∗ - Systems Engineering, UC Berkeley y - Research Center, Portuguese Air Force Academy z - Computer Science Dept., University of Salzburg Programming the Ubiquitous World • In networked mobile systems (e.g. teams of robots, smartphones, etc.) the location and connectivity of \machines" may vary during the execution of its \programs" (computation specifications) • We investigate models for bridging \programs" and \machines" with dynamic structure (location and connectivity) • BigActors [PKSBdS13, PPKS13, PS13] are actors [Agh86] hosted by entities of the physical structure denoted as bigraph nodes [Mil09] E. Pereira, C. M. Kirsch, R. Sengupta, and J. B. de Sousa, \Bigactors - A Model for Structure-aware Computation," in ACM/IEEE 4th International Conference on Cyber-Physical Systems, 2013, pp. 199-208. Case study: Oil spill monitoring scenario • \Bilge dumping" is an environmental problem of great relevance for countries with large area of jurisdictional waters • EC created the European Maritime Safety Agency to \...prevent and respond to pollution by ships within the EU" • How to use networked robotics to monitor and take evidences of \bilge dumping" Figure: Portuguese Jurisdiction waters and evidences of \Bilge dumping".
    [Show full text]
  • The Space and Motion of Communicating Agents
    The space and motion of communicating agents Robin Milner December 1, 2008 ii to my family: Lucy, Barney, Chloe,¨ and in memory of Gabriel iv Contents Prologue vii Part I : Space 1 1 The idea of bigraphs 3 2 Defining bigraphs 15 2.1 Bigraphsandtheirassembly . 15 2.2 Mathematicalframework . 19 2.3 Bigraphicalcategories . 24 3 Algebra for bigraphs 27 3.1 Elementarybigraphsandnormalforms. 27 3.2 Derivedoperations ........................... 31 4 Relative and minimal bounds 37 5 Bigraphical structure 43 5.1 RPOsforbigraphs............................ 43 5.2 IPOsinbigraphs ............................ 48 5.3 AbstractbigraphslackRPOs . 53 6 Sorting 55 6.1 PlacesortingandCCS ......................... 55 6.2 Linksorting,arithmeticnetsandPetrinets . ..... 60 6.3 Theimpactofsorting .......................... 64 Part II : Motion 66 7 Reactions and transitions 67 7.1 Reactivesystems ............................ 68 7.2 Transitionsystems ........................... 71 7.3 Subtransitionsystems .. .... ... .... .... .... .... 76 v vi CONTENTS 7.4 Abstracttransitionsystems . 77 8 Bigraphical reactive systems 81 8.1 DynamicsforaBRS .......................... 82 8.2 DynamicsforaniceBRS.... ... .... .... .... ... .. 87 9 Behaviour in link graphs 93 9.1 Arithmeticnets ............................. 93 9.2 Condition-eventnets .. .... ... .... .... .... ... .. 95 10 Behavioural theory for CCS 103 10.1 SyntaxandreactionsforCCSinbigraphs . 103 10.2 TransitionsforCCSinbigraphs . 107 Part III : Development 113 11 Further topics 115 11.1Tracking................................
    [Show full text]
  • The Origins of Structural Operational Semantics
    The Origins of Structural Operational Semantics Gordon D. Plotkin Laboratory for Foundations of Computer Science, School of Informatics, University of Edinburgh, King’s Buildings, Edinburgh EH9 3JZ, Scotland I am delighted to see my Aarhus notes [59] on SOS, Structural Operational Semantics, published as part of this special issue. The notes already contain some historical remarks, but the reader may be interested to know more of the personal intellectual context in which they arose. I must straightaway admit that at this distance in time I do not claim total accuracy or completeness: what I write should rather be considered as a reconstruction, based on (possibly faulty) memory, papers, old notes and consultations with colleagues. As a postgraduate I learnt the untyped λ-calculus from Rod Burstall. I was further deeply impressed by the work of Peter Landin on the semantics of pro- gramming languages [34–37] which includes his abstract SECD machine. One should also single out John McCarthy’s contributions [45–48], which include his 1962 introduction of abstract syntax, an essential tool, then and since, for all approaches to the semantics of programming languages. The IBM Vienna school [42, 41] were interested in specifying real programming languages, and, in particular, worked on an abstract interpreting machine for PL/I using VDL, their Vienna Definition Language; they were influenced by the ideas of McCarthy, Landin and Elgot [18]. I remember attending a seminar at Edinburgh where the intricacies of their PL/I abstract machine were explained. The states of these machines are tuples of various kinds of complex trees and there is also a stack of environments; the transition rules involve much tree traversal to access syntactical control points, handle jumps, and to manage concurrency.
    [Show full text]
  • Curriculum Vitae Thomas A
    Curriculum Vitae Thomas A. Henzinger February 6, 2021 Address IST Austria (Institute of Science and Technology Austria) Phone: +43 2243 9000 1033 Am Campus 1 Fax: +43 2243 9000 2000 A-3400 Klosterneuburg Email: [email protected] Austria Web: pub.ist.ac.at/~tah Research Mathematical logic, automata and game theory, models of computation. Analysis of reactive, stochastic, real-time, and hybrid systems. Formal software and hardware verification, especially model checking. Design and implementation of concurrent and embedded software. Executable modeling of biological systems. Education September 1991 Ph.D., Computer Science Stanford University July 1987 Dipl.-Ing., Computer Science Kepler University, Linz August 1986 M.S., Computer and Information Sciences University of Delaware Employment September 2009 President IST Austria April 2004 to Adjunct Professor, University of California, June 2011 Electrical Engineering and Computer Sciences Berkeley April 2004 to Professor, EPFL August 2009 Computer and Communication Sciences January 1999 to Director Max-Planck Institute March 2000 for Computer Science, Saarbr¨ucken July 1998 to Professor, University of California, March 2004 Electrical Engineering and Computer Sciences Berkeley July 1997 to Associate Professor, University of California, June 1998 Electrical Engineering and Computer Sciences Berkeley January 1996 to Assistant Professor, University of California, June 1997 Electrical Engineering and Computer Sciences Berkeley January 1992 to Assistant Professor, Cornell University December 1996 Computer Science October 1991 to Postdoctoral Scientist, Universit´eJoseph Fourier, December 1991 IMAG Laboratory Grenoble 1 Honors Member, US National Academy of Sciences, 2020. Member, American Academy of Arts and Sciences, 2020. ESWEEK (Embedded Systems Week) Test-of-Time Award, 2020. LICS (Logic in Computer Science) Test-of-Time Award, 2020.
    [Show full text]
  • Purely Functional Data Structures
    Purely Functional Data Structures Chris Okasaki September 1996 CMU-CS-96-177 School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213 Submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy. Thesis Committee: Peter Lee, Chair Robert Harper Daniel Sleator Robert Tarjan, Princeton University Copyright c 1996 Chris Okasaki This research was sponsored by the Advanced Research Projects Agency (ARPA) under Contract No. F19628- 95-C-0050. The views and conclusions contained in this document are those of the author and should not be interpreted as representing the official policies, either expressed or implied, of ARPA or the U.S. Government. Keywords: functional programming, data structures, lazy evaluation, amortization For Maria Abstract When a C programmer needs an efficient data structure for a particular prob- lem, he or she can often simply look one up in any of a number of good text- books or handbooks. Unfortunately, programmers in functional languages such as Standard ML or Haskell do not have this luxury. Although some data struc- tures designed for imperative languages such as C can be quite easily adapted to a functional setting, most cannot, usually because they depend in crucial ways on as- signments, which are disallowed, or at least discouraged, in functional languages. To address this imbalance, we describe several techniques for designing functional data structures, and numerous original data structures based on these techniques, including multiple variations of lists, queues, double-ended queues, and heaps, many supporting more exotic features such as random access or efficient catena- tion. In addition, we expose the fundamental role of lazy evaluation in amortized functional data structures.
    [Show full text]
  • Insight, Inspiration and Collaboration
    Chapter 1 Insight, inspiration and collaboration C. B. Jones, A. W. Roscoe Abstract Tony Hoare's many contributions to computing science are marked by insight that was grounded in practical programming. Many of his papers have had a profound impact on the evolution of our field; they have moreover provided a source of inspiration to several generations of researchers. We examine the development of his work through a review of the development of some of his most influential pieces of work such as Hoare logic, CSP and Unifying Theories. 1.1 Introduction To many who know Tony Hoare only through his publications, they must often look like polished gems that come from a mind that rarely makes false steps, nor even perhaps has to work at their creation. As so often, this impres- sion is a further compliment to someone who actually adds to very hard work and many discarded attempts the final polish that makes complex ideas rel- atively easy for the reader to comprehend. As indicated on page xi of [HJ89], his ideas typically go through many revisions. The two authors of the current paper each had the honour of Tony Hoare supervising their doctoral studies in Oxford. They know at first hand his kind and generous style and will count it as an achievement if this paper can convey something of the working style of someone big enough to eschew competition and point scoring. Indeed it will be apparent from the following sections how often, having started some new way of thinking or exciting ideas, he happily leaves their exploration and development to others.
    [Show full text]
  • The EATCS Award 2020 Laudatio for Toniann (Toni)Pitassi
    The EATCS Award 2020 Laudatio for Toniann (Toni)Pitassi The EATCS Award 2021 is awarded to Toniann (Toni) Pitassi University of Toronto, as the recipient of the 2021 EATCS Award for her fun- damental and wide-ranging contributions to computational complexity, which in- cludes proving long-standing open problems, introducing new fundamental mod- els, developing novel techniques and establishing new connections between dif- ferent areas. Her work is very broad and has relevance in computational learning and optimisation, verification and SAT-solving, circuit complexity and communi- cation complexity, and their applications. The first notable contribution by Toni Pitassi was to develop lifting theorems: a way to transfer lower bounds from the (much simpler) decision tree model for any function f, to a lower bound, the much harder communication complexity model, for a simply related (2-party) function f’. This has completely transformed our state of knowledge regarding two fundamental computational models, query algorithms (decision trees) and communication complexity, as well as their rela- tionship and applicability to other areas of theoretical computer science. These powerful and flexible techniques resolved numerous open problems (e.g., the su- per quadratic gap between probabilistic and quantum communication complex- ity), many of which were central challenges for decades. Toni Pitassi has also had a remarkable impact in proof complexity. She in- troduced the fundamental algebraic Nullstellensatz and Ideal proof systems, and the geometric Stabbing Planes system. She gave the first nontrivial lower bounds on such long-standing problems as weak pigeon-hole principle and models like constant-depth Frege proof systems. She has developed new proof techniques for virtually all proof systems, and new SAT algorithms.
    [Show full text]
  • Bigraphs and Their Algebra
    Edinburgh Research Explorer Bigraphs and Their Algebra Citation for published version: Milner, R 2008, 'Bigraphs and Their Algebra', Electronic Notes in Theoretical Computer Science, vol. 209, pp. 5-19. https://doi.org/10.1016/j.entcs.2008.04.002 Digital Object Identifier (DOI): 10.1016/j.entcs.2008.04.002 Link: Link to publication record in Edinburgh Research Explorer Document Version: Publisher's PDF, also known as Version of record Published In: Electronic Notes in Theoretical Computer Science General rights Copyright for the publications made accessible via the Edinburgh Research Explorer is retained by the author(s) and / or other copyright owners and it is a condition of accessing these publications that users recognise and abide by the legal requirements associated with these rights. Take down policy The University of Edinburgh has made every reasonable effort to ensure that Edinburgh Research Explorer content complies with UK legislation. If you believe that the public display of this file breaches copyright please contact [email protected] providing details, and we will remove access to the work immediately and investigate your claim. Download date: 24. Sep. 2021 Electronic Notes in Theoretical Computer Science 209 (2008) 5–19 www.elsevier.com/locate/entcs Bigraphs and Their Algebra Robin Milner1 University of Cambridge United Kingdom Abstract Bigraphs are a framework in which both existing process calculi and new models of behaviour can be formulated, yielding theory that is shared among these models. A short survey of the main features of bigraphs is presented, showing how they can be developed from standard graph theory using elementary category theory.
    [Show full text]
  • A Brief Scientific Biography of Robin Milner
    A Brief Scientific Biography of Robin Milner Gordon Plotkin, Colin Stirling & Mads Tofte Robin Milner was born in 1934 to John Theodore Milner and Muriel Emily Milner. His father was an infantry officer and at one time commanded the Worcestershire Regiment. During the second world war the family led a nomadic existence in Scotland and Wales while his father was posted to different parts of the British Isles. In 1942 Robin went to Selwyn House, a boarding Preparatory School which is normally based in Broadstairs, Kent but was evacuated to Wales until the end of the war in 1945. In 1947 Robin won a scholarship to Eton College, a public school whose fees were a long way beyond the family’s means; fortunately scholars only paid what they could afford. While there he learned how to stay awake all night solving mathematics problems. (Scholars who specialised in maths were expected to score 100% on the weekly set of problems, which were tough.) In 1952 he won a major scholarship to King’s College, Cambridge, sitting the exam in the Examinations Hall which is 100 yards from his present office. However, before going to Cambridge he did two years’ national military service in the Royal Engineers, gaining a commission as a second lieutenant (which relieved his father, who rightly suspected that Robin might not be cut out to be an army officer). By the time he went to Cambridge in 1954 Robin had forgotten a lot of mathematics; but nevertheless he gained a first-class degree after two years (by omitting Part I of the Tripos).
    [Show full text]
  • Chaining and the Process of Scientific Innovation
    Chaining and the process of scientific innovation Emmy Liu ([email protected]) Computer Science and Cognitive Science Programs University of Toronto Yang Xu ([email protected]) Department of Computer Science, Cognitive Science Program University of Toronto Abstract Steyvers, 2004; Prabhakaran, Hamilton, McFarland, & Ju- rafsky, 2016), the evolution of citation frames and net- A scientist’s academic pursuit can follow a winding path. Starting with one topic of research in earlier career, one may works (Jurgens, Kumar, Hoover, McFarland, & Jurafsky, later pursue topics that relate remotely to the initial point. 2018; Zeng, Shen, & Zhou, 2019), and the propagation of Philosophers and cognitive scientists have proposed theories innovation in a specific scientific field (Jurafsky, 2015). about how science has developed, but their emphasis is typi- cally not on explaining the processes of innovation in individ- Our focus here differs from the existing array of work. We ual scientists. We examine regularity in the emerging order of a explore whether there is regularity in a scientist’s innovative scientist’s publications over time. Our basic premise is that sci- research outputs as they emerge over time. Although scien- entific papers should emerge in non-arbitrary ways that tend to follow a process of chaining, whereby novel papers are linked tists vary widely in the subjects they study, we hypothesize to existing papers with closely related ideas. We evaluate this how scientists conceive novel ideas over time should exhibit proposal with a set of probabilistic models on the historical shared tendencies that reflect basic principles of human in- publications from 70 Turing Award winners.
    [Show full text]
  • Computer Laboratory
    An introduction to Computer Laboratory Ross Anderson Professor of Security Engineering 1/40 An introduction to Computer Laboratory An academic Department within the University that encompasses Computer Science, along with related aspects of Mathematics, Engineering, and Technology. 1/40 Menu I Some history I Teaching I Research I Entrepreneurship I 2009 Research Students Fund 2/40 Some history 3/40 Mathematical Laboratory (1937-69) In the beginning: one Director. J.E. Lennard-Jones (Prof. Theoretical Chemistry) . and one staff member, M.V. Wilkes (University Demonstrator). 4/40 Mathematical Laboratory (1937-69) In the beginning: Mechanical calculators 4/40 Electronic Delay Storage Automatic Calculator (EDSAC) Maurice Wilkes, May 1949 Practical computer: I 650 instructions/s I 1k x 17 bits I paper tape input I teletype output I 4m x 3m I 3000 valves I 12kW 5/40 Mathematical Laboratory (1937-69) Post-war: One computer to rule them all. EDSAC (’49–’58) EDSAC II (’58–’65) Titan (’64–’73) First ever book on computer programming: Wilkes, Wheeler, and Gill (Addison-Wesley, 1951) 6/40 Professors Wilkes, Wheeler, and Needham in 1992 7/40 Bosses and Buildings 1937 Lennard-Jones 1946 Maurice Wilkes 1970 Computer Laboratory, New Museums Site 1980 Roger Needham 1995 Robin Milner 1999 Ian Leslie 2001 Move to the William Gates Building (Computer Lab and Computing Service get divorced.) 2004 Andy Hopper 8/40 William Gates Building 9/40 Computer Laboratory today Part of the School of Technology and the Faculty of Computer Science & Technology. Staff I 35
    [Show full text]
  • Bigraphs and (Reactive) XML an XML-Centric Model of Computation
    Bigraphs and (Reactive) XML an XML-centric model of computation Thomas Hildebrandt and Jacob W. Winther Dept. of Theoretical Computer Science IT University of Copenhagen Rued Langgaards Vej 7, DK-2300 Copenhagen S, Denmark {hilde,jww}@itu.dk Version of January 12, 2005?? Abstract. XML-centric models of computation have been proposed as an an- swer to the demand for interoperability, heterogeneity and openness in coordina- tion models. Recently, Bigraphical reactive systems has been introduced as a the- oretical meta-model for reactive systems with semi-structured state. We present an XML representation of bigraphical reactive systems called Reactive XML. It may be seen as an open, XML-centric model of computation with a solid theoret- ical foundation given by the theory of bigraphical reactive systems. In particular, the theory provides a formal denotation of composition and general transforma- tions of XML documents with links. On the other hand, Reactive XML provides a concrete understanding of the theoretical model of bigraphical reactive systems. We report on a prototype for Reactive XML, describing how Reactive XML re- actions can be carried out in praxis. In particular, we describe how the abstract notion of evaluation contexts may be represented concretely (and generalised) by XPath expressions. The prototype is currently being extended to a distributed setting, ultimately allowing distributed XML-centric applications to coordinate through computations on shared XML data. 1 Introduction It has early on been observed that models for mobile computation, such as the Ambi- ent calculus [1], describe reconfiguration of spatial structures similar to the data model for semi structured data [2].
    [Show full text]