Update README
This commit is contained in:
24
README.md
24
README.md
@@ -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
|
||||||
|
|
||||||
|
```
|
||||||
@@ -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());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user