Algorithms for random k -SAT and k -colourings of a random graph - - PowerPoint PPT Presentation

algorithms for random k sat and k colourings of a random
SMART_READER_LITE
LIVE PREVIEW

Algorithms for random k -SAT and k -colourings of a random graph - - PowerPoint PPT Presentation

Algorithms for random k -SAT and k -colourings of a random graph Michael Molloy Dept of Computer Science University of Toronto Michael Molloy Algorithms for random k -SAT and k -colourings of a random graph Hard and Easy Distributions of SAT


slide-1
SLIDE 1

Algorithms for random k-SAT and k-colourings of a random graph

Michael Molloy

Dept of Computer Science University of Toronto

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-2
SLIDE 2

Hard and Easy Distributions of SAT Problems. Mitchell, Selman, Levesque 1992

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-3
SLIDE 3

3-SAT: (x1 ∨ x2 ∨ x4) ∧ (x2 ∨ x5 ∨ x7) ∧ (x1 ∨ x3 ∨ x5) ∧ (x4 ∨ x6 ∨ x7)

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-4
SLIDE 4

Motivation: Are only a few worse-case k-SAT problems difficult? What about average problems?

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-5
SLIDE 5

Question: What makes them difficult?

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-6
SLIDE 6

Question: What makes them difficult? Chv´ atal, Szemeredi 1988 W.h.p. the resolution complexity is exponentially high. Implies that any Davis-Putnam type algorithm will require exponential time to recognize an unsatisfiable formula.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-7
SLIDE 7

Question: What makes them difficult? Achlioptas, Beame, M 2001 Explains why it takes a long time to recognize a satisfiable formula.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-8
SLIDE 8

Survey Propogation Finds satisfying solutions with n = 1, 000, 000 and M = 4.25n. (Satisfiabilty threshold is ≈ 4.267) Mezard, Zecchina 2002

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-9
SLIDE 9

Survey Propogation Finds satisfying solutions with n = 1, 000, 000 and M = 4.25n. (Satisfiabilty threshold is ≈ 4.267) Mezard, Zecchina 2002 Gave us structural properties about the solutions that explain the algorithmic difficulties.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-10
SLIDE 10

Random Models

Random k-SAT: n variables and M = rn clauses.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-11
SLIDE 11

Random Models

Random k-SAT: n variables and M = rn clauses. Gn,M: Random graph with n vertices and M = rn edges. Erd˝

  • s, R´

enyi 1959

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-12
SLIDE 12

A Simple Greedy Algorithm

UNIT CLAUSE Iterate: If there is a clause of size one, set that variable. Else pick a random variable and set it randomly.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-13
SLIDE 13

A Simple Greedy Algorithm

UNIT CLAUSE Iterate: If there is a clause of size one, set that variable. Else pick a random variable and set it randomly. (x1 ∨ x2 ∨ x4) ∧ (x2 ∨ x5) ∧ (x1 ∨ x3 ∨ x5) ∧ (x2) ∧ . . .

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-14
SLIDE 14

A Simple Greedy Algorithm

UNIT CLAUSE Iterate: If there is a clause of size one, set that variable. Else pick a random variable and set it randomly. (x1 ∨ x2 ∨ x4) ∧ (x2 ∨ x5) ∧ (x1 ∨ x3 ∨ x5) ∧ (x2) ∧ . . . x2 = F

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-15
SLIDE 15

A Simple Greedy Algorithm

UNIT CLAUSE Iterate: If there is a clause of size one, set that variable. Else pick a random variable and set it randomly. (x1 ∨ x2 ∨ x4) ∧ (x2 ∨ x5) ∧ (x1 ∨ x3 ∨ x5) ∧ (x2) ∧ . . . x2 = F (x5) ∧ (x1 ∨ x3 ∨ x5) ∧ . . .

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-16
SLIDE 16

A Simple Greedy Algorithm

UNIT CLAUSE Iterate: If there is a clause of size one, set that variable. Else pick a random variable and set it randomly. (x1 ∨ x2 ∨ x4) ∧ (x2 ∨ x5) ∧ (x1 ∨ x3 ∨ x5) ∧ (x2) ∧ . . . x2 = F (x5) ∧ (x1 ∨ x3 ∨ x5) ∧ . . . 3-SAT: Works up to density r < 2.666; threshold ≈ 4.267 k-SAT: Works up to density r < 2k

k ; threshold ≈ 2k ln 2

(Franco, Paull 1983; Achlioptas, Peres 2004; Coja-Oghlan 2013 )

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-17
SLIDE 17

A Simple Greedy Algorithm

UNIT CLAUSE Iterate: If there is a clause of size one, set that variable. Else pick a random variable and set it randomly. (x1 ∨ x2 ∨ x4) ∧ (x2 ∨ x5) ∧ (x1 ∨ x3 ∨ x5) ∧ (x2) ∧ . . . x2 = F (x5) ∧ (x1 ∨ x3 ∨ x5) ∧ . . . 3-SAT: Works up to density r < 2.666; threshold ≈ 4.267 k-SAT: Works up to density r < 2k

k ; threshold ≈ 2k ln 2

Variants of this algorithm all fail to work above r = O

  • 2k

k

  • .

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-18
SLIDE 18

Clustering

Roughly speaking, clusters are: Well-connected. One can move throughout the cluster changing

  • (n) vertices at a time.

Well-separated Moving from one cluster to another requires changing Θ(n) vertices in one step. Parisi, Mezard, Zecchina

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-19
SLIDE 19

2-colourings of a Random Bipartite Graph

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-20
SLIDE 20

2-colourings of a Random Bipartite Graph

Two clusters - one for each colouring of the giant component.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-21
SLIDE 21

2-colourings of a Random Bipartite Graph

Two clusters - one for each colouring of the giant component. We can move within a cluster by switching one small component at a time. But leaving a cluster requires switching the Θ(n) vertices in the giant component.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-22
SLIDE 22

Clustering

k-SAT clusters: ≈ 2k ln k

k

unsatisfiable: ≈ 2k ln 2 k-COL clusters: ≈ 1

2k ln k

unsatisfiable: ≈ k ln k

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-23
SLIDE 23

WALK-SAT Start with any assignment. While there are unsatisfied clauses: Pick a random unsatisfied clause. Randomly choose one of its variables and flip it. (x1 ∨ x4 ∨ x5) ∧ (x2 ∨ x3 ∨ x4) ∧ (x1 ∨ x3 ∨ x5) ∧ (x3 ∨ x4 ∨ x5) ∧ ... x1 = T, x2 = T, x3 = T, x4 = T, x5 = T

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-24
SLIDE 24

WALK-SAT Start with any assignment. While there are unsatisfied clauses: Pick a random unsatisfied clause. Randomly choose one of its variables and flip it. (x1 ∨ x4 ∨ x5) ∧ (x2 ∨ x3 ∨ x4) ∧ (x1 ∨ x3 ∨ x5) ∧ (x3 ∨ x4 ∨ x5) ∧ ... x1 = T, x2 = T, x3 = T, x4 = T, x5 = T

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-25
SLIDE 25

WALK-SAT Start with any assignment. While there are unsatisfied clauses: Pick a random unsatisfied clause. Randomly choose one of its variables and flip it. (x1 ∨ x4 ∨ x5) ∧ (x2 ∨ x3 ∨ x4) ∧ (x1 ∨ x3 ∨ x5) ∧ (x3 ∨ x4 ∨ x5) ∧ ... x1 = T, x2 = T, x3 = T, x4 = T, x5 = T

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-26
SLIDE 26

WALK-SAT Start with any assignment. While there are unsatisfied clauses: Pick a random unsatisfied clause. Randomly choose one of its variables and flip it. (x1 ∨ x4 ∨ x5) ∧ (x2 ∨ x3 ∨ x4) ∧ (x1 ∨ x3 ∨ x5) ∧ (x3 ∨ x4 ∨ x5) ∧ ... x1 = T, x2 = T, x3 = F, x4 = T, x5 = T

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-27
SLIDE 27

WALK-SAT Start with any assignment. While there are unsatisfied clauses: Pick a random unsatisfied clause. Randomly choose one of its variables and flip it. Seems to work up to freezing threshold ≈ 2k ln k

k

Proven to work up to 2k ln k

25k

( Coja-Oghlan, Frieze 2012)

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-28
SLIDE 28

2-colourings of a Random Bipartite Graph

Two clusters - one for each colouring of the giant component. Every vertex of the giant component is frozen. Its colour is fixed within each cluster.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-29
SLIDE 29

The Freezing Threshold

Freezing Threshold ≈ Clustering Threshold Frozen Variable: Has the same value on every solution in the cluster. r < r f : Almost all clusters have no frozen variables. r > r f : Almost all clusters have Θ(n) frozen variables. Krzakala, Zdeborova; Montanari, Ricci-Tersenghi, Semerjian

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-30
SLIDE 30

The Freezing Threshold

Freezing Threshold ≈ Clustering Threshold Unfrozen Variable: Can be changed by making a local modficiation - changing o(n) nearby variables. Frozen Variable: To change it requires a global modification - changing Θ(n) variables. r < r f : Almost all solutions have no frozen variables. r > r f : Almost all solutions have Θ(n) frozen variables.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-31
SLIDE 31

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-32
SLIDE 32

A Complicated Greedy Algorithm

DECIMATION Find a variable that is set T (F) in most solutions. Set it T (F). Iterate.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-33
SLIDE 33

A Complicated Greedy Algorithm

DECIMATION Find a variable that is set T (F) in most solutions. Set it T (F). Iterate. The marginal of a variable is (pT, pF) in a uniformly random solution. Challenge: Compute the marginals.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-34
SLIDE 34

Belief Propogation with Decimation Use BP to estimate the marginal for each variable. Set the most biased variable. Iterate. The marginal of a variable is (pT, pF) in a uniformly random solution.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-35
SLIDE 35

When does BP compute accurate marginals?

BP works perfectly on trees.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-36
SLIDE 36

When does BP compute accurate marginals?

BP works perfectly on trees. Random graphs look locally like trees.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-37
SLIDE 37

When does BP compute accurate marginals?

BP works perfectly on trees. Random graphs look locally like trees.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-38
SLIDE 38

When does BP compute accurate marginals?

BP works perfectly on trees. Random graphs look locally like trees. Intuition: BP should be accurate if there is negligible correlation from long paths between leaves.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-39
SLIDE 39

When does BP compute accurate marginals?

BP works perfectly on trees. Random graphs look locally like trees. Intuition: BP should be accurate if there is negligible correlation from long paths between leaves. Equivalently: Two random vertices have negligible correlation.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-40
SLIDE 40

When does BP compute accurate marginals?

BP works perfectly on trees. Random graphs look locally like trees. Intuition: BP should be accurate if there is negligible correlation from long paths between leaves. Equivalently: Two random vertices have negligible correlation.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-41
SLIDE 41

Condensation

Condensation Threshold ≈ Satisfiability Threshold Krzakala, Montanari, Ricci-Tersenghi, Semerjian, Zdeborova 2007 After condensation: one cluster contains a linear proportion of the solutions.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-42
SLIDE 42

Condensation

Condensation Threshold ≈ Satisfiability Threshold Krzakala, Montanari, Ricci-Tersenghi, Semerjian, Zdeborova 2007 After condensation: one cluster contains a linear proportion of the solutions. This introduces correlations which prevent BP from working.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-43
SLIDE 43

Condensation

Condensation Threshold ≈ Satisfiability Threshold Krzakala, Montanari, Ricci-Tersenghi, Semerjian, Zdeborova 2007 After condensation: one cluster contains a linear proportion of the solutions. This introduces correlations which prevent BP from working. IDEA: Take marginals over random clusters rather than random solutions.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-44
SLIDE 44

Survey Propogation

In a cluster, a variable can take one of three labels: frozen True frozen False Not frozen The marginal of a variable is (pT, pF, p∗) in a uniformly random cluster.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-45
SLIDE 45

Survey Propogation

In a cluster, a variable can take one of three labels: frozen True frozen False Not frozen The marginal of a variable is (pT, pF, p∗) in a uniformly random cluster. The set of valid {T, F, ∗} assignments can be described using local rules.

  • Eg. if xi=T then xi is in a clause where every other literal is False.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-46
SLIDE 46

Survey Propogation

In a cluster, a variable can take one of three labels: frozen True frozen False Not frozen The marginal of a variable is (pT, pF, p∗) in a uniformly random cluster. The set of valid {T, F, ∗} assignments can be described using local rules.

  • Eg. if xi=T then xi is in a clause where every other literal is False.

This allows us to use BP to estimate marginals over random {T, F, ∗} assignments.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-47
SLIDE 47

Survey Propogation with Decimation Use SP to estimate the marginal for each variable. Set the variable that is most biased to T or F. Iterate.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-48
SLIDE 48

Survey Propogation with Decimation Use SP to estimate the marginal for each variable. Set the variable that is most biased to T or F. Iterate until the marginals are all trivial: p∗ ≈ 1.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-49
SLIDE 49

Survey Propogation with Decimation Use SP to estimate the marginal for each variable. Set the variable that is most biased to T or F. Iterate until the marginals are all trivial: p∗ ≈ 1. Then apply WALK-SAT.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-50
SLIDE 50

When does Survey Propogation fail?

Empirical Observation: The solutions found by SPD always contain no frozen variables.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-51
SLIDE 51

When does Survey Propogation fail?

Empirical Observation: The solutions found by SPD always contain no frozen variables. Intuition: This is how it reaches a subformula with all trivial marginals.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-52
SLIDE 52

When does Survey Propogation fail?

Empirical Observation: The solutions found by SPD always contain no frozen variables. Intuition: This is how it reaches a subformula with all trivial marginals. Furthermore: Valid {T, F, ∗} assignments are locked, and we think that this makes them very difficult to find.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-53
SLIDE 53

When does Survey Propogation fail?

Empirical Observation: The solutions found by SPD always contain no frozen variables. Intuition: This is how it reaches a subformula with all trivial marginals. Furthermore: Valid {T, F, ∗} assignments are locked, and we think that this makes them very difficult to find. Second Freezing Threshold: Every solution has frozen variables. The second freezing threshold appears to be a barrier for SPD.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-54
SLIDE 54

When does Survey Propogation fail?

Empirical Observation: The solutions found by SPD always contain no frozen variables. Intuition: This is how it reaches a subformula with all trivial marginals. Furthermore: Valid {T, F, ∗} assignments are locked, and we think that this makes them very difficult to find. Second Freezing Threshold: Every solution has frozen variables. The second freezing threshold appears to be a barrier for SPD. We think the second freezing threshold is ≈ 2k ln k

k

. I.e. it is near the clustering/freezing thresholds.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-55
SLIDE 55

When does Survey Propogation fail?

Empirical Observation: The solutions found by SPD always contain no frozen variables. Intuition: This is how it reaches a subformula with all trivial marginals. Furthermore: Valid {T, F, ∗} assignments are locked, and we think that this makes them very difficult to find. Second Freezing Threshold: Every solution has frozen variables. The second freezing threshold appears to be a barrier for SPD. We think the second freezing threshold is ≈ 2k ln k

k

. I.e. it is near the clustering/freezing thresholds. Proven: It is less than 4

5 of the satisfiability threshold, for large k.

(Achlioptas, Ricci-Tersenghi 2006).

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-56
SLIDE 56

The first freezing threshold is a barrier for WALK-SAT and simple greedy algorithms.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-57
SLIDE 57

For small k, BPD works a bit past the condensation threshold, and SPD works until the second freezing threshold which is very close to the satisfiability threshold. 3-SAT: condensation: 3.86, second freezing: 4.25, satisfiability: 4.267

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-58
SLIDE 58

For small k, BPD works a bit past the condensation threshold, and SPD works until the second freezing threshold which is very close to the satisfiability threshold. 3-SAT: condensation: 3.86, second freezing: 4.25, satisfiability: 4.267 For large k, the clustering, first freezing, and second freezing thresholds are all ≈ 2k ln k

k

, and this seems to be a barrier for BPD and SPD.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-59
SLIDE 59

For small k, BPD works a bit past the condensation threshold, and SPD works until the second freezing threshold which is very close to the satisfiability threshold. 3-SAT: condensation: 3.86, second freezing: 4.25, satisfiability: 4.267 For large k, the clustering, first freezing, and second freezing thresholds are all ≈ 2k ln k

k

, and this seems to be a barrier for BPD and SPD. So despite the early promise of SPD, asymptotically in k it doesn’t seem to beat some simple greedy algorithms.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-60
SLIDE 60

What’s Proven?

k-XOR-SAT Each clause has an odd number of true literals. This is a system of linear equations mod 2.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-61
SLIDE 61

What’s Proven?

k-XOR-SAT Each clause has an odd number of true literals. This is a system of linear equations mod 2. The structure of the clusters is much simpler than most CSP’s, and it is rigorously very well understood. Dubois, Mandler 2002 Dietzfelbinger et al 2010 Pittel and Sorkin 2012 Ibrahimi, Kanoria, Kranning, Montanari 2011 Achlioptas, M 2011 Gao, M 2014

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-62
SLIDE 62

Approximate location of the satisfiability threshold

k-SAT: 2k ln 2 − (k + 1)ln 2 2 − O(1) ≤ rsat ≤ 2k ln 2 Achlioptas, Peres 2004 k-COL: k ln k − ln k − O(1) ≤ rsat ≤ k ln k − 1 2 ln k Achlioptas, Naor 2005

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-63
SLIDE 63

Approximate location of the satisfiability threshold

k-SAT: 2k ln 2 − (k + 1)ln 2 2 − O(1) ≤ rsat ≤ 2k ln 2 Achlioptas, Peres 2004 rsat = 2k ln 2 − 1 2(1 + ln 2) + o(1) Coja-Oghlan 2013 k-COL: k ln k − ln k − O(1) ≤ rsat ≤ k ln k − 1 2 ln k Achlioptas, Naor 2005 rsat = k ln k − 1 2 ln k + O(1) Coja-Oghlan, Vilenchik 2013

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-64
SLIDE 64

Approximate location of the clustering threshold

k-SAT: rcluster ≤ 2k ln k k (1 + o(1)) Achlioptas, Coja-Oghlan 2008 k-COL: rcluster ≤ 1 2k ln k(1 + o(1)) Achlioptas, Coja-Oghlan 2008

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-65
SLIDE 65

Exact location of the freezing threshold

k-SAT: rfreeze ≤ 2k ln k k (1 + o(1)) Achlioptas, Coja-Oghlan 2008 k-COL: rfreeze = 1 2k ln k(1 + o(1)) Achlioptas, Coja-Oghlan 2008

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-66
SLIDE 66

Exact location of the freezing threshold

k-SAT: rfreeze ≤ 2k ln k k (1 + o(1)) Achlioptas, Coja-Oghlan 2008 k-COL: rfreeze = 1 2k ln k(1 + o(1)) Achlioptas, Coja-Oghlan 2008 rfreeze = min

x>0

(k − 1)x 2(1 − e−x)k−1 M 2012

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-67
SLIDE 67

Exact location of the condensation threshold

k-COL: The exact value of the condensation threshold is determined. Bapst, Coja-Oghlan, Hetterich, Rassmann, Vilenchik 2014

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-68
SLIDE 68

Simplified Belief Propogation with Decimation Use BP to estimate the marginal for each variable. Pick a random variable and set it randomly according to its marginal. Iterate. The marginal of a variable is (pT, pF) in a uniformly random solution.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-69
SLIDE 69

Simplified Belief Propogation with Decimation Use BP to estimate the marginal for each variable. Pick a random variable and set it randomly according to its marginal. Iterate. The marginal of a variable is (pT, pF) in a uniformly random solution. k-SAT: Fails at densities above O

  • 2k

k

  • .

Coja-Oghlan 2011

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-70
SLIDE 70

Simplified Belief Propogation with Decimation Use BP to estimate the marginal for each variable. Pick a random variable and set it randomly according to its marginal. Iterate. The marginal of a variable is (pT, pF) in a uniformly random solution. k-SAT: Fails at densities above O

  • 2k

k

  • .

Coja-Oghlan 2011 After several iterations, the residual formula exhibits condensation and so BP fails.

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-71
SLIDE 71

Local Algorithms fail at densities >> the clustering/freezing threshold. Gamarnik, Sudan 2013 Rahman, Virag 2014

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph

slide-72
SLIDE 72

Michael Molloy Algorithms for random k-SAT and k-colourings of a random graph