module Algorithm where
import System.Random
import Data.Maybe
import Data.List
type Atom = String
type Literal = (Bool,Atom)
type Clause = [Literal]
type Formula = [Clause]
type Model = [(Atom, Bool)]
type Node = (Formula, ([Atom], Model))
-- This function takess a Clause and return the set of Atoms of that Clause.
atomsClause :: Clause -> [Atom]
-- This function takes a Formula returns the set of Atoms of a Formula
atoms :: Formula -> [Atom]
-- This function returns True if the given Literal can be found within
-- the Clause.
isLiteral :: Literal -> Clause -> Bool
-- this function takes a Model and an Atom and flip the truthvalue of
-- the atom in the model
flipSymbol :: Model -> Atom -> Model -- is this ok?
Additional functions :
remove :: (Eq a) )a ->[a] ->[a]
-This function removes an item from a list.
neg :: Literal->Literal
-This function flips a literal (ie. from P to :P and from :P to P).
falseClause :: Model -> Clause -> Bool
-This function takes a Model and a Clause and returns True
if the clause is unsatisfied by the model or False otherwise.
falseClauses :: Formula -> Model -> [Clause]
-This function takes a Formula and a Model and returns the list of clauses of the formula that are not satisfied.
assignModel :: Model -> Formula -> Formula
-This function applies the assign function for all the assignments of a given model.
checkFormula :: Formula -> Maybe Bool This function checks whether a formula can be decided to be satisfiable or unsatisfiable based on the effects of the assign function.
satisfies :: Model -> Formula -. Bool This function checks whether a model satisfies a formula. This is done with the combination of the assignModel and checkFormula functions.
|
|
|||||||||||||||||
|
|
One place to get you started: look at
Now suppose we can write an function
Then we may have a chance of using that function to filter general formulae. So I would attempt to ignore everything but the function The trick in general is to figure out how to break up the functions into smaller constituents which are easily written and then afterwards glue these individual pieces together with code to solve the final problem. We are decomposing I hope this helps you start on your problem. It may seem to be quite irrelevant but do take note that more advanced variants of this is used in Model Checking algorithms which verify that your CPU is correct, that protocols behave and recently is has also been used in automatic refactoring, see http://coccinelle.lip6.fr/ for a use. So this problem is a good way to learn some serious applicability in the real world! I'll edit it here to help you rather than replying in the comment section. You wrote:
There are a couple of problems with this approach as you mention. First, the game is that your
The path you have taken requires you to sort the list in the clause lexicographically and then consider what to do in the case you have
Notice that if the value Moving the focus to |
|||||||||||
|
|
This question is too broad: it might be marginally OK if you focused on one particular function that you needed help on, but really, in order for us to effectively, you need to give us more than just the specification of what the code should to: with only that, this is just a "Do my homework for me" problem. That being said, I recommend taking the examples you posted in your descriptions and converting them to your representation (I assume you're using CNF?) Then you'll have something along the lines of
becomes
and then think about what the resulting data type looks like, and how you might get there from a strictly computational perspective. Don't worry about performance. |
|||
|