Practical Tractability of CSPS by Higher Level Consistency and Tree Decomposition

Total Page:16

File Type:pdf, Size:1020Kb

Practical Tractability of CSPS by Higher Level Consistency and Tree Decomposition University of Nebraska - Lincoln DigitalCommons@University of Nebraska - Lincoln Computer Science and Engineering: Theses, Computer Science and Engineering, Department Dissertations, and Student Research of Spring 5-3-2013 Practical Tractability of CSPS by Higher Level Consistency and Tree Decomposition Shant Karakashian University of Nebraska-Lincoln, [email protected] Follow this and additional works at: https://digitalcommons.unl.edu/computerscidiss Part of the Artificial Intelligence and Robotics Commons Karakashian, Shant, "Practical Tractability of CSPS by Higher Level Consistency and Tree Decomposition" (2013). Computer Science and Engineering: Theses, Dissertations, and Student Research. 58. https://digitalcommons.unl.edu/computerscidiss/58 This Article is brought to you for free and open access by the Computer Science and Engineering, Department of at DigitalCommons@University of Nebraska - Lincoln. It has been accepted for inclusion in Computer Science and Engineering: Theses, Dissertations, and Student Research by an authorized administrator of DigitalCommons@University of Nebraska - Lincoln. PRACTICAL TRACTABILITY OF CSPS BY HIGHER LEVEL CONSISTENCY AND TREE DECOMPOSITION by Shant Karakashian A DISSERTATION Presented to the Faculty of The Graduate College at the University of Nebraska In Partial Fulfilment of Requirements For the Degree of Doctor of Philosophy Major: Computer Science Under the Supervision of Professor Berthe Y. Choueiry Lincoln, Nebraska May, 2013 PRACTICAL TRACTABILITY OF CSPS BY HIGHER LEVEL CONSISTENCY AND TREE DECOMPOSITION Shant Karakashian, Ph. D. University of Nebraska, 2013 Adviser: Berthe Y. Choueiry Constraint Satisfaction is a flexible paradigm for modeling many decision problems in Engineering, Computer Science, and Management. Constraint Satisfaction Problems (CSPs) are in general N P -complete and are usually solved with search. Research has identified various islands of tractability, which enable solving certain CSPs with backtrack-free search. For example, one sufficient condition for tractability relates the consistency level of a CSP to treewidth of the CSP's constraint network. However, enforcing higher levels of consistency on a CSP may require the addition of constraints, thus altering the topology of the constraint network and increasing its treewidth. This thesis addresses the following question: How close can we approach in practice the tractability guaranteed by the relationship between the level of consistency in a CSP and the treewidth of its constraint network? To achieve \practical tractability," this thesis proposes: (1) New local consistency properties and algorithms for enforcing them without adding constraints or altering the network's topology; (2) Methods to enforce these consistency properties on the clusters of a tree decomposition of the CSP; and (3) Schemes to bolster the propagation between the clusters of the tree decomposition. Our empirical evaluation shows that our techniques allow us to achieve practical tractability for a wide range of problems, and that they are both applicable (i.e., require acceptable time and space) and useful (i.e., outperform other consistency properties). We theoretically characterize the proposed consistency properties and empirically evaluate our techniques on benchmark problems. Our techniques for higher level consistency exhibit their best performances on difficult benchmark problems. They solve a larger number of difficult problem instances than algorithms enforcing weaker consistency properties, and moreover they solve them in an almost backtrack-free manner. iv COPYRIGHT c 2013, Shant Karakashian v DEDICATION To my family and my wife vi ACKNOWLEDGMENTS I am indebted to all those who helped me throughout the years of my graduate studies. I am grateful to my adviser, Professor Berthe Y. Choueiry, for her guidance, help, support and patience. I would like to thank the members of my Supervising Committee for their support and input, in particular the two readers of my dissertation Professor Rina Dechter and Professor Matthew Dwyer for the constructive feedback and corrections. The research described in this dissertation was inspired by some of the research contributions of Professor Dechter, and the discussion related in Section 6.5.4 is a direct result of her input. I would like to acknowledge research collaborations and the scientific input of the following individuals: Professor Rina Dechter and Dr. Radu Marinescu for discussions about tree decomposition, Mr. Robert J. Woodward for collaboration on Chapters 3 and 5, Professor Stephen G. Hartke for collaboration on Appendix A, Dr. Christian Bessiere for collaboration on Chapters 3, 5, and Appendix B, Mr. Christopher G. Reeson for collaboration on Chapter 3, Professor Kostas Stergiou for sharing his data and random problem generator, and Professor Stephen D. Scott and Mr. Daniel Geschwender for collaboration on Chapter 4. My gratitude goes to Mrs. Gassia Akilian, Mr. Daniel Geschwender, Ms. Phyllis O'Neil, Mr. Tony Schneider, and Mr. Robert J. Woodward for carefully proofreading this dissertation. Special thanks to Professor David Swanson, Mr. Tom Harvil and the entire team of the Holland Computing Center team for supporting me with the use of computing resources necessary for the experiments. Special thanks to Professor Eugene C. Freuder, Dr. Stephen Prestwich, and Dr. Richard Wallace for hosting me at 4C during Summer 2010, which was a wonderful research experience and invaluable training. vii I would like to thank all the members of my family and my wife for their uncon- ditional support, infinite sacrifice, and unwavering encouragement throughout this journey. My sincere gratitude goes to Dr. Jihad Boulos and Dr. Walid Keirouz for their mentorship and friendship, and for being there for me during the most critical stages of my academic journey. viii GRANT INFORMATION This research supported by a NSF CAREER Award #0133568 and NSF Grant No. RI-111795. Experiments were conducted on the equipment of the Holland Computing Center at UNL. ix Contents Contents ix List of Figures xvii List of Tables xxi List of algorithms xxiv 1 Introduction 1 1.1 Motivation & Claim . 2 1.2 Approach . 4 1.2.1 Higher level consistencies . 4 1.2.2 Tree decomposition . 4 1.3 Contributions . 5 1.4 Document Structure . 7 2 Background Information 10 2.1 Constraint Satisfaction Problems (CSPs) . 10 2.1.1 Problem definition . 11 2.1.2 Defining constraints . 12 2.1.3 Graphical representations . 13 x 2.1.4 Solving CSPs . 15 2.2 Consistency Properties . 16 2.2.1 Variable-based consistency properties . 16 2.2.2 Relation-based consistency properties . 18 2.2.3 Global consistency properties . 19 2.2.4 Comparing consistency properties . 19 2.3 Algorithms for Enforcing Consistency . 20 2.3.1 Domain filtering . 20 2.3.2 Constraint synthesis . 21 2.3.3 Relation filtering . 21 2.3.4 Techniques for improving performance in practice . 22 2.4 Tree-Structured Constraint Networks . 22 2.5 Tree Decomposition . 23 2.5.1 Definition . 23 2.5.2 Structural parameters and tractability . 25 2.5.3 Main tree-decomposition techniques . 25 2.6 Solving CSPs with Tree Decomposition . 26 2.6.1 Cluster-centered methods . 27 2.6.2 Variable-centered methods . 28 2.6.3 Backtrack-search based methods . 30 2.6.4 Approximation techniques . 31 3 Consistency Property R(∗,m)C 34 3.1 Overview . 35 3.2 R(∗,m)C ................................. 36 3.3 Weakening R(∗,m)C ........................... 38 xi 3.4 Theoretical Characterization . 40 3.5 A First Algorithm for Enforcing R(∗,m)C . 40 3.5.1 Initializing the queue . 41 3.5.2 Processing the queue . 41 3.5.3 Searching for a support . 43 3.5.4 The index-tree data structure . 43 3.5.5 Improving the search for support . 45 3.5.6 Improving forward checking . 45 3.5.7 Complexity analysis . 46 3.6 Related Work . 47 3.7 Empirical Evaluations . 49 3.7.1 Experimental set-up . 49 3.7.2 Results . 50 3.7.3 Conclusions . 62 4 An Alternative Algorithm for Enforcing R(∗,m)C 64 4.1 Background . 65 4.2 Related Work . 67 4.3 AllSol .................................. 67 4.3.1 AllSol: Solving a single counting problem . 67 4.3.2 Complexity analysis . 68 4.3.3 Qualitative comparison of PerTuple and AllSol . 69 4.4 Building a Hybrid Solver . 71 4.4.1 Data used for building the classifiers . 72 4.4.2 Parameters and features . 74 4.4.3 Building the classifiers . 76 xii 4.4.4 Empirical evaluations . 78 4.4.5 Conclusions . 83 5 Localized Consistency & Structure-Guided Propagation 84 5.1 Generating a Tree Decomposition . 85 5.2 Localizing Consistency to Clusters . 87 5.2.1 Information transfer between clusters . 88 5.2.2 Characterizing cl-R(∗,m)C . 89 5.3 Structure-Guided Propagation . 89 5.3.1 Related Work . 91 5.3.2 Structure of the propagation queue . 92 5.3.3 Queue-management strategies . 93 5.3.4 Implementing Priority and Dynamic . 94 5.3.4.1 Functions & accessors used in pseudocode . 95 5.3.4.2 Selection from fringe . 96 5.3.4.3 Algorithm for Priority . 97 5.3.4.4 Algorithm for Dynamic . 101 5.3.5 Correctness of the algorithms . 103 5.4 Empirical Evaluations . 104 5.4.1 Experimental set-up . 104 5.4.2 Evaluating the localization . 105 5.4.3 Evaluating queue-management strategies . 109 5.5 Conclusions . 112 6 Bolstering Propagation at Separators 114 6.1 Introduction . 114 6.2 Bolstering Propagation at Separators . 115 xiii 6.2.1 Three bolstering schemes . 116 6.2.1.1 Adding constraint projections . 117 6.2.1.2 Adding binary constraints . 117 6.2.1.3 Adding clique constraints . 119 6.2.1.4 Generating the relations of the binary and clique con- straints . 120 6.2.2 Transferring information between clusters . 122 6.3 Resulting Consistency Properties . 122 6.4 Related Work . 125 6.5 Empirical Evaluations . 126 6.5.1 Experimental set-up . 126 6.5.2 Aggregate results . 127 6.5.3 A finer view . 130 6.5.4 Performance as a function of the treewidth .
Recommended publications
  • Algorithms for Reasoning with Probabilistic Graphical Models INTRODUCTORY
    Rina Dechter & Alexander Ihler University of California, Irvine Algorithms for Reasoning with Probabilistic Graphical Models INTRODUCTORY Summary The course will cover the primary exact and approximate algorithms for reasoning with probabilistic graphical models (e.g., Bayesian and Markov networks, influence diagrams, and Markov decision processes). We will present inference-based, message passing schemes (e.g., variable elimination) and search-based, conditioning schemes (e.g., cycle-cutset conditioning and AND/OR search). Each algorithm class possesses distinct characteristics and in particular has different time vs. space behavior. We will emphasize the dependence of the methods on graph parameters such as the treewidth, cycle- cutset, and (pseudo-tree) height. We will start from exact algorithms and move to approximate schemes that are anytime, including weighted mini-bucket schemes with cost-shifting and MCMC sampling. Syllabus Class 1: Introduction and Inference schemes • Basic Graphical models – Queries – Examples/applications/tasks – Algorithms overview • Inference algorithms, exact – Bucket elimination – Jointree clustering – Elimination orders • Decomposition Bounds – Dual Decomposition, GDD – MBE/WMBE – Belief Propagation Class 2: Search Schemes • AND/OR search spaces, pseudo-trees – AND/OR search trees – AND/OR search graphs – Generating good pseudo-trees • Heuristic search for AND/OR spaces – Brute-force traversal – Depth-first AND/OR branch and bound – Best-first AND/OR search – The Guiding MBE heuristic – Marginal Map (max-sum-product) • Hybrids of search and Inference Class 3: • Variational methods – Convexity & decomposition bounds – Variational forms & the marginal polytope – Message passing algorithms – Convex duality relationships • Monte Carlo sampling – Basics – Importance sampling – Markov chain Monte Carlo – Integrating inference and sampling References Rina Dechter: Reasoning with Probabilistic and Deterministic Graphical Models: Exact Algorithms.
    [Show full text]
  • Felix Elwert
    July 2021 FELIX ELWERT University of Wisconsin–Madison Department of Sociology and Center for Demography and Ecology 4426 Sewell Social Sciences Building 1180 Observatory Drive Madison, WI 53706 [email protected] ACADEMIC POSITIONS University of Wisconsin–Madison 2017- Professor, Department of Sociology Department of Biostatistics and Medical Informatics (affiliated) Department of Population Health Sciences (affiliated) 2013–2017 Associate Professor (Affiliated), Department of Population Health Sciences 2012–2017 Associate Professor, Department of Sociology 2007–2012 Assistant Professor, Department of Sociology WZB Berlin Social Science Center, Germany 2015–2016 Acting Director, Research Unit Social Inequality and Social Policy 2014–2015 Karl W. Deutsch Visiting Professor Harvard Medical School 2006–2007 Postdoctoral Fellow, Department of Health Care Policy EDUCATION 2007 Ph.D., Sociology, Harvard University 2006 A.M., Statistics, Harvard University 1999 M.A., Sociology, New School for Social Research 1997 Vordiplom, Sociology, Free University of Berlin Felix Elwert / May 2020 AWARDS AND FELLOWSHIPS 2018 Leo Goodman Award, Methodology Section, American Sociological Association 2018 Elected member, Sociological Research Association 2018 Vilas Midcareer Faculty Award, University of Wisconsin-Madison 2017- H. I. Romnes Faculty Fellowship, University of Wisconsin-Madison 2016-2018 Fellow, WZB Berlin Social Science Center, Berlin, Germany 2013 Causality in Statistics Education Award, American Statistical Association 2013 Vilas Associate Award, University of Wisconsin–Madison 2012 Jane Addams Award (Best Paper), Community and Urban Sociology Section, American Sociological Association 2010 Gunther Beyer Award (Best Paper by a Young Scholar), European Association for Population Studies 2009, 2010, 2017 University Housing Honored Instructor Award, University of Wisconsin- Madison 2009 & 2010 Best Poster Awards, Annual Meeting of the Population Association of America 2005–2006 Eliot Fellowship, Harvard University 2004 Aage B.
    [Show full text]
  • Ucla Computer Science Depart "Tment
    THE UCLA COMPUTER SCIENCE DEPART"TMENT QUARTERLY THE DEPARTMENT AND ITS PEOPLE FALL 1987/WINTER 1988 VOL. 16 NO. 1 SCHOOL OF ENGINEERING AND APPLIED SCIENCE COMPUTER SCIENCE DEPARTMENT OFFICERS Dr. Gerald Estrin, Chair Dr. Jack W. Carlyle, Vice Chair, Planning & Resources Dr. Sheila Greibach, Vice Chair, Graduate Affairs Dr. Lawrence McNamee, Vice Chair, Undergraduate Affairs Mrs. Arlene C. Weber, Management Services Officer Room 3713 Boelter Hall QUARTERLY STAFF Dr. Sheila Greibach, Editor Ms. Marta Cervantes, Coordinator Material in this publication may not be reproduced without written permission of the Computer Science Department. Subscriptions to this publication are available at $20.00/year (three issues) by contacting Ms. Brenda Ramsey, UCLA Computer Science Department, 3713 Boelter Hall, Los Angeles, CA 90024-1596. THE UCLA COMPUTER SCIENCE DEPARTMENT QUARTERLY The Computer Science Department And Its People Fall Quarter 1987/Winter Quarter 1988 Vol. 16, No. 1 SCHOOL OF ENGINEERING AND APPLIED SCIENCE UNIVERSITY OF CALIFORNIA, LOS ANGELES Fall-Winfer CSD Quarterly CONTENTS COMPUTER SCIENCE AT UCLA AND COMPUTER SCIENCE IN THE UNITED STATES GeraldEstrin, Chair...................................................................................................... I THE UNIVERSITY CONTEXT .............................................................................................. 13 THE UCLA COMPUTER SCIENCE DEPARTMENT The Faculty A rane nf;ntraract Biographies .............................................................................................................................
    [Show full text]
  • Rina Dechter
    Rina Dechter Information and Computer Science Irvine, CA 92717 email: [email protected] www.ics.uci.edu/~ dechter 949-824-6556 Education • University of California, Los Angeles Computer Science, Major Field: Artificial Intelligence Ph.D. 1985 • Weizman Institute of Science, Rehovot, Israel Applied Mathematics M.S. 1976 • The Hebrew University of Jerusalem, Israel Mathematics and Statistics B.S. 1973 Work Experience • University of California, Irvine Information and Computer Science July 1996{present: Full Professor July 1992{1996: Associate Professor Oct 1990{1992: Assistant Professor • Technion, Israel Computer Science Department Oct 1988 - Sept 1990: Senior Lecturer, (equivalent to Assistant Profes- sor) 1 • Hughes Aircraft, Calabasas July 85 - Mar 88: Staff member, AI Center • University of California, Los Angeles Computer Science Department Oct 87 - Sept 88: Research Associate • University of California, Los Angeles Computer Science Department July 85 - Sept 87: Presidential Postdoctoral Scholar • IBM Scientific Center, Los Angeles, CA Sept 82 - Dec 84: Student member of Technical Staff, Robotic Project • University of California, Los Angeles Computer Science Department July 81 - Sept 85: Research Assistant Research in the areas of Communication Networks (1981-1982), and Artificial Intelligence (1982-85) • Perceptronics Inc. Woodland Hills, California Oct 78 - Mar 80: Research Mathematician Responsible for modeling, experimental design and computer simula- tions for Human-Resource Test and Evaluation for advanced weapon systems • Everyman's University, Tel-Aviv, Israel Apr 76 - Aug 78: Staff member Developed self-study programs for teaching college mathematics. Awards and Honors • 1986-87: UC Presidential Postdoctoral Fellowship. • 1990: Best Paper, Canadian AI Conference (CSCSI-90) for [C15,J10] • 1991: NSF Presidential Young Investigator.
    [Show full text]
  • Department of Computer Science
    University of California, Irvine 2016-2017 1 Department of Computer Science Alexandru Nicolau, Department Chair Rina Dechter, Department Vice Chair 3019 Donald Bren Hall 949-824-1546 http://www.cs.uci.edu/ Overview With 40 full-time faculty members, 300+ graduate students, and more than 2,000 undergraduates, we provide a world-class research environment spanning not only the core areas of computer science — including computer architecture, system software, networking and distributed computing, data and information systems, the theory of computation, artificial intelligence, and computer graphics — but also highly interdisciplinary programs, such as biomedical informatics, data mining, security and privacy, and ubiquitous computing. The diverse research interests of our faculty are reflected directly in our educational programs. Computer Science faculty teach most of the undergraduate and graduate courses for the degree programs in both Computer Science and Information & Computer Science. We jointly offer with our colleagues in The Henry Samueli School of Engineering an undergraduate degree in Computer Science and Engineering, as well as the graduate program in Networked Systems. We also have a major in Computer Game Science, jointly offered with the Department of Informatics. Our department collaborates with many other institutions in the United States and abroad, and its doors are always open to a multitude of visitors and collaborators from all corners of the globe. Undergraduate Major in Computer Science The Computer Science major emphasizes the principles of computing that underlie our modern world, and provides a strong foundational education to prepare students for the broad spectrum of careers in computing. This major can serve as preparation for either graduate study or a career in industry.
    [Show full text]
  • Donald Bren School of Information and Computer Sciences Donald Bren Hall Dedication
    Annual Report 2006-07 Donald Bren School of Information and Computer Sciences Donald Bren Hall Dedication. June 20, 2007. (L to R) Vice Chancellor Tom Mitchell, Brenda Drake, Chancellor Michael V. Drake, Donald Bren, and Dean Debra J. Richardson Dear Bren School Community, 2006-07 was an exciting academic year at UC Irvine’s Donald Bren School of Information and Computer Sciences. We had many successes and firsts as we moved into the new Donald Bren Hall and welcomed many new graduate and undergraduate students. Today, we are an academic community of more than 1,500 students, over 100 full-time faculty and staff, and approximately 7,000 alumni worldwide. In teaching and scholarship, we continue to be among the top in information and computer sciences. To add to our list of accolades, our Networked Systems program was just rated number one by Academic Analytics, in additino to being ranked third in Information Systems. 04 Bren School Faculty At the Bren School, we have a unique perspective on computing and 08 Department of Computer Science information technology, stimulating society daily. Our vibrant community, 10 Department of Informatics comprised of researchers and educators as well as industry-leading scholars, 12 Department of Statistics explores innovative topics ranging from building complete computer systems on 14 Center of Excellence chips smaller than a finger nail to developing user interface systems that allow 18 Student Affairs engineers on opposite sides of the world to collaborate effectively. 20 Business Office I invite you stay in touch with us throughout the year by subscribing to our RSS 21 Communications feed or visiting our Web site regularly (www.ics.uci.edu).
    [Show full text]
  • CV-Prof.-Rachel-Ben-Eliyahu-Zohary
    CURRICULUM VITAE Name: Ben Eliyahu- Zohary Rachel 1. Academic Education B.Sc. 1983, Mathematics and Computer Science, Hebrew University of Jerusalem, Jerusalem, Israel. Ph.D. 1993, Computer Science University of California, Los-Angeles, UCLA. Topic of Dissertation: Computational aspects of nonmonotonic Reasoning. Advisors: Professor Judea Pearl (UCLA) and Professor Rina Dechter (UCI). 2. Academic Employment 2006-present Associate Professor, Jerusalem College of Engineering, Jerusalem, Israel. 2003-present Head, Department of Software Engineering, Jerusalem College of Engineering, Jerusalem, Israel. (on sabbatical 2004-2005, 2012-2013) 2004-2005 Research and Teaching, Harvard Division of Engineering and Applied Sciences, Visiting Scholar. 2003-2006 Senior Lecturer, Jerusalem College of Engineering, Jerusalem, Israel. 2000-2010 Senior Lecturer, Department of Communication Systems Engineering, Ben- Gurion University of the Negev, Beer-Sheva, Israel. (on maternity leave 2002, on leave 2003-2006) 2000-2003 Head of study Programs Committee, Ben-Gurion University of the Negev, Beer-Sheva, Israel. 1995-1998 Lecturer, Department of Computer Science, Ben-Gurion University of the Negev, Beer-Sheva, Israel. 1995-1998 Head of study Programs Committee, Ben-Gurion University of the Negev, Beer-Sheva, Israel. 1993-1995 Post-doctoral researcher, Faculty of Computer Science, Technion - Israel Institute of Technology, Haifa, Israel. 1990-1993 Research Assitant, Department of Computer Science - Cognitive Systems Laboratory, UCLA. 1988-1990 Teaching Assistant
    [Show full text]
  • UC Irvine ICS Technical Reports
    UC Irvine ICS Technical Reports Title Working notes of the 1991 spring symposium on constraint-based reasoning Permalink https://escholarship.org/uc/item/5311p0gf Author Dechter, Rina Publication Date 1991-09-16 Peer reviewed eScholarship.org Powered by the California Digital Library University of California Z 63 HoI t, Working Notes of the 1991 Spring Symposium on Constraint-Based Reasoning^ Rina Dechter September 16, 1991 Technical Report 91-65 1991 Spring Symposium Series Constraint-Based Reasoning Working Notes (Distribution limited to symposium attendees) March 26 - 28, 1991 Stanford University Sponsored by the American Association for Artificial Intelligence I WORKING NOTES AAAI SPRING SYMPOSIUM SERIES Symposium; Constraint-Based Reasoning Program Committee: Rina Dechter, UC Irvine, Cochair Sanjay Mittal, Metaphor Computer Systems, Cochair Alan Borning, University of Washington Mark Fox, Carnegie Mellon University Eugene Freuder, University of New Hampshire Joxan Jaffar, IBM T.J. Watson Research Center Alan Mackworth, University of British Columbia Judea Pearl, UC Los Angeles MARCH 26, 27, 28, 1991 STANFORD UNIVERSITY Table of Contents FOREWORJD i Theoretical Issues in Constraint Satisfaction The Logic of Constraint Satisfaction 1 Alan Mackworthj Department of Computer Science, University of British Columbia Constraint-Based Knowledge Acquisition 30 Eugene C. Freuder, Computer Science Department, University of New Hampshire Default Logic, Propositional Logic and Constraints 33 Rachel Ben-Eliyahu, Computer Science Department, University of California, Los Angeles, and Rina Dechter, Department of Information and Computer Science, University of California, Irvine Satisfiability and Reasoning with Inconsistent Beliefs Using Energy Minimization 47 Gadi Pinkas, Computer Science Department, Washington University Reasoning About Disjunctive Constraints 57 Can A. Baykan and Mark S.
    [Show full text]
  • Program & Exhibit Guide
    Program & Exhibit Guide EIGHTEENTH NATIONAL CONFERENCE ON ARTIFICIAL INTELLIGENCE (AAAI-02) FOURTEENTH CONFERENCE ON INNOVATIVE APPLICATIONS OF ARTIFICIAL INTELLIGENCE (IAAI-02) July 28-August 1, 2002 Shaw Conference Centre and Westin Edmonton Hotel Edmonton, Alberta, Canada SPONSORED BY THE AMERICAN ASSOCIATION FOR ARTIFICIAL INTELLIGENCE Cosponsored by ACM/SIGART, Alberta Informatics Circle of Research Excellence (iCORE), Defense Advanced Research Projects Agency (DARPA), NASA Ames Research Center, NSF's Directorate for Computer and Information Science and Engineering (CISE), Naval Research Laboratory In cooperation with The University of Alberta Contents Robot Challenge Cochairs Ben Kuipers, University of Texas at Austin and Acknowledgments / 2 Ashley Stroupe, Carnegie Mellon University Awards / 3 Conference at a Glance / 5 Robot Rescue Competition Cochairs DC-02 / 4 Jenn Casper, Mark Micire, and Robin Murphy, Exhibition / 18 University of South Florida General Information / 33 IAAI-02 Program / 13–15 Robot Host Competition Cochairs Intelligent Systems Demonstrations / 21 David Gustafson, Kansas State University and Invited Talks / 10 Francois Michaud, Universite de Sherbrooke Maps / 37–39 Robot Exhibition Cochairs National Botball Exhibition / 31 Ian Horswill and Christopher Dac Le, Poster Sessions / 3 Northwestern University Registration / 32 Robot Building Laboratory / 7 Mobile Robot Workshop Chair Robot Competition and Exhibition / 24 Bill Smart, Washington University St. Louis Special Events and Programs / 3–4 Special Meetings
    [Show full text]
  • S. Sloman-VITA
    S. Sloman-VITA June, 2021 CURRICULUM VITAE 1. Steven Sloman, Professor, Department of Cognitive, Linguistic, & Psychological Sciences, Brown University. 2. Home address: Providence, Rhode Island 02906 3. Education: B.Sc., University of Toronto, 1986, Psychology Ph.D., Stanford University, 1990, Psychology Dissertation topic: Memory and judgment processes 4. Professional Appointments: 1990-1992 Post-doctoral fellow, University of Michigan 1992-1998 Assistant Professor, Brown University 1998-2005 Associate Professor, Brown University 2005- Professor, Brown University 5. Completed Research a. Books and Special Issues J. Park, M. Lee, H. Choi, Y. Kwon, S. Sloman, & E. Halperin (Eds.). 2019 Annual Reports of Attitude of Koreans toward Peace and Reconciliation. Seoul: Korea Institute for National Unification. Sloman, S. A. & Weber, E. (Eds.) (2019). The Cognitive Science of Political Thought. Cognition, 188, 1-140. Sloman, S. A. & Fernbach, P. (2017). The Knowledge Illusion: Why We Never Think Alone. NY: Riverhead Press. (see https://sites.google.com/site/slomanlab/the-knowledge-illusion-in-the- news) Sloman, S. A. (Ed.) (2015). The Changing Face of Cognition. Cognition, 135. Sloman, S. A. & Pearl, J. (Eds.) (2013). Special issue of Cognitive Science on Counterfactuals. Cognitive Science, 37 (6). Sloman, S. A. (2005). Causal models: How we think about the world and its alternatives. New York: Oxford University Press. Sloman, S. A. & Rips, L. J. (Eds.) (1998) Rules versus similarity in human thinking. Special issue of Cognition, 65, 87-302. Also appears as Similarity and symbols in human thinking, Cambridge: MIT Press book. c. Refereed Journal Articles Fullerton, M., Rabb, N., Mamidipaka, S., Ungar, Lyle, & Sloman, S. (in press). Evidence against risk as a motivating driver of COVID-19 preventive behaviors in the U.S.
    [Show full text]
  • Identifying Independencies in Causal Graphs with Feedback P Aj
    420 Pearl and Dechter Identifying Independencies In Causal Graphs with Feedback Judea Pearl Rina Dechter Cognitive Systems Laboratory Information & Computer Science Computer Science Department University of California, Irvine University of California, Los Angeles, CA 90024 Irvine, CA 92717 [email protected]. edu rdechter@ics. uci. edu Abstract then we contrast these notions with those associated with recursive and nonrecursive causal models. The We show that the d-separation criterion con­ reader is encouraged to consult the example in section stitutes a valid test for conditional indepen­ 3.1, where these notions are given graphical represen­ dence relationships that are induced by feed­ tations. back systems involving discrete variables. 2.1 BAYESIAN NETWORKS INTRODUCTION 1 Definition 1 Let V :::::: {X 1, . .., Xn} be an ordered set of variables, and let P( v) be the joint probability dis­ It is well known that the d-separation test is sound tribution on these variables. A set of variables P Aj is and complete relative to the independencies as­ said to be Markovian parents of Xj if PAj is a minimal sumed in the construction of Bayesian networks set of predecessors of Xi that renders Xi independent [Verma and Pearl, 1988, Geiger et al., 1990]. In other of all its other predecessors. In other words, PAj is words, any d-separation condition in the network cor­ any subset of {X,, ... , Xj -d satisfying responds to a genuine independence condition in the P(xJIPai):::::: P(xilx,, . ,X -t) (1) underlying probability distribution and, conversely, j such that no proper subset of PAj satisfies Eq. (1).
    [Show full text]
  • Conference Organizers and Program Committee
    Organization of the American Association for Artificial Intelligence 1993 National Conference on Thomas L. Dean, Brown University Artificial Intelligence (AAAI-93) Rina Dechter, University of California, Irvine Gerald DeJong, University of Illinois Conference Chair Johan deKleer, Xerox Palo Alto Research Center William Swartout, USC/Information Sciences Marie desJardins, SRI International Institute Mark Drummond, NASA Ames Research Center Michael Dyer, University of California, Los Program Cochairs Angeles Richard Fikes, Stanford University Charles Elkan, University of California, San Diego Wendy Lehnert, University of Massachusetts, Robert S. Engelmore, KSL/Stanford University Amherst Michael Erdmann, Carnegie Mellon University Associate Chairs Brian Falkenhainer, Cornell University Paul Cohen, University of Massachusetts, Amherst Usama Fayyad, JPL/California Institute of Technology Ramesh Patil, USC/Information Sciences Institute Steven Feiner, Columbia University Douglas Fisher, Vanderbilt University Robot Competition and Exhibition Cochairs Kenneth D. Forbus, Northwestern University Kurt Konolige, SRI International Peter Friedland, NASA Ames Research Center Terry Weymouth, University of Michigan Les Gasser, University of Southern California Tutorial Program Chair Michael Gelfond, University of Texas Paul Cohen, University of Massachusetts, Amherst Maria Gini, University of Minnesota Ken Goldberg, University of Southern California Video Program Cochairs Diana Gordon, Naval Research Lab Walter Hamscher, Price Waterhouse Technology Tom
    [Show full text]