I am working on modal logic tableau solver which is implemented in python (2.7.5 version). So I already have a function that translates an input string to tableau format that is:
Input:
~p ^ q
Parsed:
['and',('not', 'p'), 'q']
Parsed and alpha rule applied:
[('not', 'p'), 'q']
Now, I dealt with alpha formulas that is intersection, double negations etc. The problem that I am encountering now are the beta formulas , for example Union.
For the Union formula I need to write a function that splits one list in two lists, so for example:
Input:
('and', 's', ('or', (not,'r'), 'q'))
Outputs:
1st list ('s',('not','r'))
2nd list ('s','q')
I can easily do it once, but how can I recursively scan the formula and generate these list so that later I can scan them and verify whether they are closed or not?
The final goal of this is to create a tableau solver which generates a graph that is a Model or return an answer that formula is unsatisfiable.
It' a very interesting project :). I'm myself in thesis about modal logic right now.
I'm first of all, advising you to use the InToHyLo input format, which is quite a standard in the existing solvers.
The InToHyLo format is looking as follow:
To simplify the parsing of your formula and to focus on the real problem : Solving the instance. I advise you to use an existing parser like
flex/bison
.By looking on Internet for your problem, (I'm far from being an expert in Python) it looks like the library "http://pyparsing.wikispaces.com" is the reference for parsing.
And after, just by using Bison as follow, your file will be fully parsed.
Here is my Bison file (for using Flex/Bison in a solver C++):
By adapting it, you will be able to parse fully and recursively a modal logic formula :).
And if later, you want to challenge your solver to existing tableau solver (like Spartacus for example). Dont forget that theses solvers are almost all the time, answering a maximal open Tableau, so they will be for sure faster that you if you want to find a Kripke model of the solution ;)
I hope I manage to help you with your question, I would like to be less theoretical, but I unfortunately don't master python for this :/.
Wish you the best with your solver;
Best Regards.
If you accept my proposition of using the InToHyLo, I worked recently on a Checker of Kripke models for the modal logic K. That you can find here: http://www.cril.univ-artois.fr/~montmirail/mdk-verifier/
It has been published recently in PAAR'2016:
On Checking Kripke Models for Modal Logic K, Jean-Marie Lagniez, Daniel Le Berre, Tiago de Lima, and Valentin Montmirail, Proceedings of the Fifth Workshop on Pratical Aspect of Automated Reasoning (PAAR 2016)