Here you can ask questions and find or give answers to organizational, academic and other questions about studying computer science.

1.1k questions

1.2k answers

1.6k comments

532 users

0 votes

In this DPLL algorithm, is that possible to set another value to x0 and x1. 

When i tried, 

{x0, ¬b}, {x0, ¬c}, {b, c, ¬x0} 

{x0, ¬x1}, {x1, ¬a, ¬x0},

 {a, ¬x1} {x1, ¬b}

set x1 = true, 

{x0, ¬b}, {x0, ¬c}, {b, c, ¬x0} 

{x0}

 {a} 

a = true, x0 = true, b = c = true or b = false or c = true

Is that a valid solution ? As per my understanding we should not get anything like {} which will be a conflict. When i gave these values i did not get any conflicts 

in # Study-Organisation (Master) by (2.7k points)

1 Answer

+1 vote
 
Best answer

That is certain possible in general, and in this example, it also generates a model of the formula. If we compute the BDD of the formula, we can also see all the possible models (but I think you should have written b or c must be true):

by (166k points)
selected by
Thanks for the clarification.

Related questions

0 votes
1 answer
asked Jul 31, 2023 in * TF "Emb. Sys. and Rob." by farwinr (380 points)
0 votes
1 answer
0 votes
1 answer
asked Aug 25, 2023 in # Study-Organisation (Master) by yk (2.7k points)
0 votes
1 answer
asked Aug 22, 2023 in # Study-Organisation (Master) by yk (2.7k points)
Imprint | Privacy Policy
...