1 Chapter 1: Constraints What are they, what do they do and what can I use them for.

Slides:



Advertisements
Similar presentations
Type Inference David Walker COS 320. Criticisms of Typed Languages Types overly constrain functions & data polymorphism makes typed constructs useful.
Advertisements

1 Chapter 4:Constraint Logic Programs Where we learn about the only programming concept rules, and how programs execute.
1 Finite Constraint Domains. 2 u Constraint satisfaction problems (CSP) u A backtracking solver u Node and arc consistency u Bounds consistency u Generalized.
Dana Nau: Lecture slides for Automated Planning Licensed under the Creative Commons Attribution-NonCommercial-ShareAlike License:
1 Constraint operations: Simplification, Optimization and Implication.
1 Chapter 2: Simplification, Optimization and Implication Where we learn more fun things we can do with constraints.
ML: a quasi-functional language with strong typing Conventional syntax: - val x = 5; (*user input *) val x = 5: int (*system response*) - fun len lis =
Algebra Problems… Solutions Algebra Problems… Solutions © 2007 Herbert I. Gross Set 22 By Herbert I. Gross and Richard A. Medeiros next.
Constraint Logic Programming Ryan Kinworthy. Overview Introduction Logic Programming LP as a constraint programming language Constraint Logic Programming.
1 Constraint Programming Maurizio Gabbrielli Universita’ di Bologna Slides by: K. Marriott.
ML: a quasi-functional language with strong typing Conventional syntax: - val x = 5; (*user input *) val x = 5: int (*system response*) - fun len lis =
Catriel Beeri Pls/Winter 2004/5 type reconstruction 1 Type Reconstruction & Parametric Polymorphism  Introduction  Unification and type reconstruction.
1 Chapter 1: Constraints What are they, what do they do and what can I use them for.
Search in the semantic domain. Some definitions atomic formula: smallest formula possible (no sub- formulas) literal: atomic formula or negation of an.
Last time Proof-system search ( ` ) Interpretation search ( ² ) Quantifiers Equality Decision procedures Induction Cross-cutting aspectsMain search strategy.
Type Inference David Walker CS 510, Fall Criticisms of Typed Languages Types overly constrain functions & data polymorphism makes typed constructs.
Linear Systems The definition of a linear equation given in Chapter 1 can be extended to more variables; any equation of the form for real numbers.
Review for Final Exam Systems of Equations.
1 Constraint Programming: An Introduction Adapted by Cristian OLIVA from Peter Stuckey (1998) Ho Chi Minh City.
1 L is in NP means: There is a language L’ in P and a polynomial p so that L 1 ≤ L 2 means: For some polynomial time computable map r : x: x L 1 iff r(x)
CSE583: Programming Languages David Notkin 22 February David Notkin 22.
Solve Equations with Variables on Both Sides
Chapter 4.1 Solving Systems of Linear Equations in two variables.
Equations, Inequalities, and Mathematical Models 1.2 Linear Equations
1 © 2010 Pearson Education, Inc. All rights reserved © 2010 Pearson Education, Inc. All rights reserved Chapter 1 Equations and Inequalities.
Constraint Satisfaction CPSC 386 Artificial Intelligence Ellen Walker Hiram College.
Propositional Calculus CS 270: Mathematical Foundations of Computer Science Jeremy Johnson.
1 P P := the class of decision problems (languages) decided by a Turing machine so that for some polynomial p and all x, the machine terminates after at.
Meeting 19 System of Linear Equations. Linear Equations A solution of a linear equation in n variables is a sequence of n real numbers s 1, s 2,..., s.
1.6. DEFINITIONS  An equation is a statement that two expressions are equal.  Usually contains 1 or more variables  A variable is a symbol that represents.
1 Chapter 3: Finite Constraint Domains Where we meet the simplest and yet most difficult constraints, and some clever and not so clever ways to solve them.
Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall.
1 Compiler Construction (CS-636) Muhammad Bilal Bashir UIIT, Rawalpindi.
Types and Programming Languages Lecture 14 Simon Gay Department of Computing Science University of Glasgow 2006/07.
Solving Systems by Elimination 5.4 NOTES, DATE ____________.
Daniel Kroening and Ofer Strichman 1 Decision Procedures An Algorithmic Point of View Basic Concepts and Background.
Identities, Contradictions and Conditional Equations.
Solving Equations With Variables on Both Sides Section 2-4.
Lesson 10 Type Reconstruction
CS5205: Foundation in Programming Languages Type Reconstruction
Chapter 2: Simplification, Optimization and Implication
What are they, what do they do and what can I use them for.
P & NP.
Chapter 7 Rational Expressions
Optimization Problems
Chapter 2: Simplification, Optimization and Implication
ML: a quasi-functional language with strong typing
Five-Minute Check (over Lesson 1-5) Mathematical Practices Then/Now
CHAPTER 1.3 Solving Equations.
Graphing Equations and Inequalities
Case Study: Undefined Variables
Proving Properties of Recursive Functions and Data Structures
Equations with Unknowns on Both Sides
Propositional Calculus: Boolean Algebra and Simplification
The Metacircular Evaluator
MODULE 4 EQUATIONS AND INEQUALITIES.
Let’s Review -- An equation is similar to a scale. Both sides of the scale need to be equal in order for the scale to balance. Properties of equality.
Chapter 3: Finite Constraint Domains
Copyright © Cengage Learning. All rights reserved.
CSCI1600: Embedded and Real Time Software
Practice session #4: Static Type Correctness Algorithms:
Chapter 3: Finite Constraint Domains
Objectives Identify solutions of linear equations in two variables.
6.001 SICP Interpretation Parts of an interpreter
Section 6.1 Order of Operations
2 Equations, Inequalities, and Applications.
Graphplan/ SATPlan Chapter
Graphplan/ SATPlan Chapter
Section 6.1 Order of Operations
Solving Systems of Linear Equations in Three Variables
Presentation transcript:

1 Chapter 1: Constraints What are they, what do they do and what can I use them for.

2 Constraints u What are constraints? u Modelling problems u Constraint solving u Tree constraints u Other constraint domains u Properties of constraint solving

3 Constraints Variable: a place holder for values Function Symbol: mapping of values to values Relation Symbol: relation between values

4 Constraints Primitive Constraint: constraint relation with arguments Constraint: conjunction of primitive constraints

5 Satisfiability Valuation: an assignment of values to variables Solution: valuation which satisfies constraint

6 Satisfiability Satisfiable: constraint has a solution Unsatisfiable: constraint does not have a solution satisfiable unsatisfiable

7 Equivalent Constraints Two different constraints can represent the same information Two constraints are equivalent if they have the same set of solutions

8 Modelling with constraints u Constraints describe idealized behaviour of objects in the real world

9 Modelling with constraints start foundations interior walls exterior walls chimney roof doors tiles windows

10 Constraint Satisfaction u Given a constraint C two questions u satisfaction: does it have a solution? u solution: give me a solution, if it has one? u The first is more basic u A constraint solver answers the satisfaction problem

11 Constraint Satisfaction u How do we answer the question? u Simple approach try all valuations.

12 Constraint Satisfaction u The enumeration method won’t work for Reals (why not?) u A smarter version will be used for finite domain constraints u Solving Real constraints — one technique is Gauss-Jordan elimination

13 Gauss-Jordan elimination u Choose an equation c from C u Rewrite c into the form x = e u Replace x everywhere else in C by e u Continue until u all equations are in the form x = e u or an equation is equivalent to d = 0 (d != 0) u Return true in the first case else false

14 Gauss-Jordan Example 1 Replace X by 2Y+Z-1 Replace Y by -1 Return false

15 Gauss-Jordan Example 2 Replace X by 2Y+Z-1 Replace Y by -1 Solved form : constraints in this form are satisfiable

16 Solved Form u Non-parametric variable: appears on the left of one equation. u Parametric variable: appears on the right of any number of equations. u Solution: choose parameter values and determine non-parameters

17 Tree Constraints u Tree constraints represent structured data u Tree constructor: character string u cons, node, null, widget, f u Constant: constructor or number u Tree: u A constant is a tree u A constructor with a list of > 0 trees is a tree u Drawn with constructor above children

18 Tree Examples order(part(77665, widget(red, moose)), quantity(17), date(3, feb, 1994)) cons(red,cons(blue,con s(red,cons(…))))

19 Tree Constraints u Height of a tree: u a constant has height 1 u a tree with children t1, …, tn has height one more than the maximum of trees t1,…,tn u Finite tree: has finite height u Examples: height 4 and height

20 Terms u A term is a tree with variables replacing subtrees u Term: u A constant is a term u A variable is a term u A constructor with a list of > 0 terms is a term u Drawn with constructor above children u Term equation: s = t (s,t terms)

21 Term Examples order(part(77665, widget(C, moose)), Q, date(3, feb, Y)) cons(red,cons(B,cons(r ed,L)))

22 Tree Constraint Solving u Assign trees to variables so that the terms are identical u cons(R, cons(B, nil)) = cons(red, L) u Similar to Gauss-Jordan u Starts with a set of term equations C and an empty set of term equations S u Continues until C is empty or it returns false

23 Tree Constraint Solving u unify u unify(C) u Remove equation c from C u case x=x: do nothing u case f(s1,..,sn)=g(t1,..,tn): return false u case f(s1,..,sn)=f(t1,..,tn): u add s1=t1,.., sn=tn to C u case t=x (x variable, t not variable): add x=t to C u case x=t (x variable): add x=t to S u substitute t for x everywhere else in C and S

24 Tree Solving Example CS Like Gauss-Jordan, variables are parameters or non-parameters. A solution results from setting parameters (I.e T) to any value.

25 One extra case u Is there a solution to X = f(X) ? u NO! u if the height of X in the solution is n u then f(X) has height n+1 u Occurs check: u before substituting t for x u check that x does not occur in t

26 Tree Constraints Elsewhere u Tree constraints are used in Prolog u We’ll see terms and tree constraints elsewhere in the course – terms will describe types in the functional programming languages, and the “unify” solver will be used in type inference

27 Other Constraint Domains u There are many u Boolean constraints u Sequence constraints u Blocks world u Finite-domain constraints (discussed in detail in Chapter 3) u Many more, usually related to some well understood mathematical structure

28 Boolean Constraints Used to model circuits, register allocation problems, etc. An exclusive or gate Boolean constraint describing the xor circuit

29 Boolean Solver let m be the number of primitive constraints in C epsilon is between 0 and 1 and determines the degree of incompleteness for i := 1 to n do generate a random valuation over the variables in C if the valuation satisfies C then return true endif endfor return unknown

30 Boolean Constraints u Something new? u The Boolean solver can return unknown u It is incomplete (doesn’t answer all questions) u It is polynomial time, where a complete solver is exponential (unless P = NP) u Still, such solvers can be useful!

31 Blocks World Constraints Objects in the blocks world can be on the floor or on another object. Physics restricts which positions are stable. Primitive constraints are e.g. red(X), on(X,Y), not_sphere(Y). floor Constraints don't have to be mathematical

32 Blocks World Constraints A solution to a Blocks World constraint is a picture with an annotation of which variable is which block Y X Z

33 Solver Definition u A constraint solver is a function solv which takes a constraint C and returns true, false or unknown depending on whether the constraint is satisfiable u if solv(C) = true then C is satisfiable u if solv(C) = false then C is unsatisfiable

34 Properties of Solvers u We desire solvers to have certain properties u well-behaved: u set based: answer depends only on set of primitive constraints u monotonic: is solver fails for C1 it also fails for C1 /\ C2 u variable name independent: the solver gives the same answer regardless of names of vars

35 Properties of Solvers u The most restrictive property we can ask u complete: A solver is complete if it always answers true or false. (never unknown)

36 Constraints Summary u Constraints are pieces of syntax used to model real world behaviour u A constraint solver determines if a constraint has a solution u Real arithmetic and tree constraints u Properties of solver we expect (well- behavedness)