Update README

This commit is contained in:
2017-04-10 15:01:25 +02:00
parent e5b7f09495
commit 5cfade4bba
2 changed files with 26 additions and 2 deletions

View File

@@ -1,2 +1,26 @@
# DTALMP # DTALMP
Démonstrateur à tableau analytiques pour les logiques modales propositionnelles Démonstrateur à tableau analytiques pour les logiques modales propositionnelles
## Exécution
```
Entrer Expression Infixe :
L(a|b)>(La|Lb)
```
```
W1 : !>L|ab|LaLb
W1 : L|ab
W1 : !|LaLb
W1 : !La
W1 : !Lb
W1 -> W2
W2 : !a
W2 : |ab
W1 -> W3
W3 : !b
W3 : |ab
W2 : a
W2 : b
W3 : a
SAT
```

View File

@@ -9,11 +9,11 @@ public class Main {
public static void main(String[] args) { public static void main(String[] args) {
Expression e = new Expression(); Expression e = new Expression();
e.negExpressionPrefixe(); e.negExpressionPrefixe();
System.out.println(e.getExpressionPrefixe()); //System.out.println(e.getExpressionPrefixe());
System.out.println(); System.out.println();
Tree treeExpression = new Tree(e.getExpressionPrefixe()); Tree treeExpression = new Tree(e.getExpressionPrefixe());
treeExpression.display(); //treeExpression.display();
Handling handling = new Handling(treeExpression.getRoot()); Handling handling = new Handling(treeExpression.getRoot());
} }