- Indeterminacy in concurrent computation
Indeterminacy in concurrent computation is concerned with the effects of
indeterminacy inconcurrent computation .Computation is an area in which indeterminacy is becoming increasingly important because of the massive increase in concurrency due to networking and the advent of [http://www.intel.com/technology/techresearch/idf/platform-2015-keynote.htm many-core] computer architectures. These computer systems make use of arbiters which give rise to
indeterminacy .A limitation of logic programming
Patrick Hayes [1973] argued that the "usual sharp distinction that is made between the processes of computation and deduction, is misleading".
Robert Kowalski developed the thesis that "computation could be subsumed by deduction" and quoted with approval "Computation is controlled deduction." which he attributed to Hayes in his 1988 paper on the early history of Prolog. Contrary to Kowalski and Hayes,Carl Hewitt claimed that logical deduction was incapable of carrying out concurrent computation in open systems.Hewitt [1985] , Hewitt and Agha [1991] , and other published work argued that mathematical models of concurrency did not determine particular concurrent computations as follows: The Actor model makes use of arbitration (often in the form of notional Arbiters) for determining which message is next in the arrival ordering of an Actor that is sent multiple messages concurrently. This introduces indeterminacy in the arrival order. Since the arrival orderings are indeterminate, they cannot be deduced from prior information by mathematical logic alone. Therefore mathematical logic can not implement concurrent computation in open systems.
The authors note that although mathematical logic cannot, in their view, implement general concurrency it can implement some special cases of concurrent computation, "e.g.," sequential computation and some kinds of parallel computation including the
lambda calculus .Arrival order indeterminacy
According to Hewitt [2006] , in concrete terms for Actor systems, typically we cannot observe the details by which the arrival order of messages for an Actor is determined. Attempting to do so affects the results and can even push the indeterminacy elsewhere. e.g., see
metastability in electronics and arbiters. Instead of observing the internals of arbitration processes of Actor computations, we await outcomes. Indeterminacy in arbiters produces indeterminacy in Actors. The reason that we await outcomes is that we have no alternative because of indeterminacy.It is important to be clear about the basis for the published claim about the limitation of mathematical logic. It was not just that Actors could not in general be implemented in mathematical logic. The published claim was that because of the indeterminacy of the physical basis of the Actor model, that no kind of deductive mathematical logic could escape the limitation. This became important later when researchers attempted to extend
Prolog (which had some basis inlogic programming ) to concurrent computation using message passing. (See the section below).What does the mathematical theory of Actors have to say about this? A "closed" system is defined to be one which does not communicate with the outside.
Actor model theory provides the means to characterize all the possible computations of a closed Actor system. So mathematical logic can characterize (as opposed to implement) all the possible computations of a closed Actor system. Other models of concurrent systems, "e.g.,"process calculi , can sometimes be used to characterize closed concurrent computations.A limitation of logic due to lack of information
An open Actor system S is one in which the addresses of outside Actors can be passed into S in the middle of computations so that S can communicate with these outside Actors. These outside Actors can then in turn communicate with Actors internal to S using addresses supplied to them by S. Due to limitation of the inability to deduce arrival orderings, knowledge of what messages are sent from outside would not enable the response of S to be deduced.Other models of concurrent systems, "e.g.,"
process calculi , can sometimes be used to implement open systems. These systems usually have behavior which does not depend on arrival time orderings; often this means that their behavior can be deduced logically.Prolog-like concurrent systems were claimed to be based on mathematical logic
Keith Clark , Hervé Gallaire, Steve Gregory, Vijay Saraswat, Udi Shapiro, Kazunori Ueda, etc. developed a family ofProlog -like concurrent message passing systems using unification of shared variables and data structure streams for messages. Claims were made that these systems were based on mathematical logic.Fact|date=March 2007 This kind of system was used as the basis of the Japanese Fifth Generation Project (ICOT).Carl Hewitt and Gul Agha [1991] argued that these Prolog-like concurrent systems were neither deductive nor logical: like the Actor model, the Prolog-like concurrent systems were based on message passing and consequently were subject to the same indeterminacy.
Logical operations and system efficiency
Hewitt maintained that a basic lesson can be learned from Prolog and the Prolog-like concurrent systems: a universal model of concurrent computation is limited by having any mandatory overhead in the basic communication mechanisms. This is an argument against including pattern-directed invocation using unification and extraction of messages from data structure streams as fundamental primitives. But compare Shapiro's survey of Prolog-like concurrent programming languages for arguments for inclusion.
Indeterminacy in other models of computation
Arbitration is the basis of the indeterminacy in the
Actor model of concurrent computation (seeActor model early history andActor model theory ). It may also play a role in other models of concurrent systems such asprocess calculi .References
*
Carl Hewitt . PLANNER: A Language for Proving Theorems in RobotsIJCAI 1969.
*Carl Hewitt. Procedural Embedding of Knowledge In Planner IJCAI 1971.
*Carl Hewitt, Peter Bishop and Richard Steiger. A Universal Modular Actor Formalism for Artificial Intelligence IJCAI 1973.
*Robert Kowalski Predicate Logic as Programming Language Memo 70, Department of Artificial Intelligence,Edinburgh University . 1973.
*Pat Hayes. Computation and Deduction Mathematical Foundations of Computer Science: Proceedings of Symposium and Summer School, Štrbské Pleso, High Tatras, Czechoslovakia, September 3-8, 1973.
*Carl Hewitt and Henry Baker Laws for Communicating Parallel Processes IFIP-77, August 1977.
*Carl Hewitt. Viewing Control Structures as Patterns of Passing MessagesJournal of Artificial Intelligence . June 1977.
*Henry Baker. Actor Systems for Real-Time Computation MIT EECS Doctoral Dissertation. January 1978.
*Bill Kornfeld and Carl Hewitt. The Scientific Community MetaphorIEEE Transactions on Systems, Man, and Cybernetics . January 1981.
*Will Clinger. Foundations of Actor SemanticsMIT Mathematics Doctoral Dissertation. June 1981.
*Carl Hewitt. The Challenge of Open Systems Byte Magazine. April 1985. Reprinted in "The foundation of artificial intelligence---a sourcebook" Cambridge University Press. 1990.
*Gul Agha. [https://dspace.mit.edu/handle/1721.1/6952 Actors: A Model of Concurrent Computation in Distributed Systems] Doctoral Dissertation. MIT Press. 1986.
*Robert Kowalski. The limitation of logic Proceedings of the 1986 ACM 14th Annual Conference on Computer science.
*Ehud Shapiro (Editor). Concurrent PrologMIT Press . 1987.
*Robert Kowalski. The Early Years of Logic ProgrammingCommunications of the ACM . January 1988.
*Ehud Shapiro. The family of concurrent logic programming languagesACM Computing Surveys . September 1989.
*Carl Hewitt and Gul Agha. Guarded Horn clause languages: are they deductive and Logical? International Conference on Fifth Generation Computer Systems, Ohmsha 1988. Tokyo. Also in "Artificial Intelligence at MIT", Vol. 2. MIT Press 1991.
*Carl Hewitt. The repeated demise of logic programming and why it will be reincarnated What Went Wrong and Why: Lessons from AI Research and Applications. Technical Report SS-06-08. AAAI Press. March 2006.
*Carl Hewitt (2006b) [http://www.pcs.usp.br/~coin-aamas06/10_commitment-43_16pages.pdf "What is Commitment? Physical, Organizational, and Social"] COIN@AAMAS. April 27, 2006.ee also
*
quantum computer
*randomized algorithm
*nondeterministic Turing machine
Wikimedia Foundation. 2010.