Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| edfcef6438 |
@@ -1,8 +1,17 @@
|
||||
# DTALMP
|
||||
Démonstrateur à tableau analytiques pour les logiques modales propositionnelles
|
||||
|
||||
## Compilation
|
||||
```
|
||||
cd src/
|
||||
javac Main.java expression/* statement/*
|
||||
```
|
||||
|
||||
## Exécution
|
||||
```
|
||||
java Main
|
||||
```
|
||||
```
|
||||
Entrer Expression Infixe :
|
||||
L(a|b)>(La|Lb)
|
||||
```
|
||||
|
||||
@@ -2,9 +2,6 @@ import expression.Expression;
|
||||
import expression.Tree;
|
||||
import statement.Handling;
|
||||
|
||||
/**
|
||||
* Created by xawirses on 29/03/17.
|
||||
*/
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
Expression e = new Expression();
|
||||
|
||||
@@ -5,9 +5,6 @@ import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.LinkedList;
|
||||
|
||||
/**
|
||||
* Created by xawirses on 28/02/17.
|
||||
*/
|
||||
public class Expression {
|
||||
private String expression;
|
||||
private String expressionPrefixe;
|
||||
|
||||
@@ -1,8 +1,5 @@
|
||||
package expression;
|
||||
|
||||
/**
|
||||
* Created by azael on 20/03/17.
|
||||
*/
|
||||
public class Node {
|
||||
|
||||
private char node;
|
||||
|
||||
@@ -1,9 +1,5 @@
|
||||
package expression;
|
||||
|
||||
/**
|
||||
* Created by xawirses on 28/02/17.
|
||||
*/
|
||||
|
||||
public class Operator {
|
||||
|
||||
public static final int nbOperators = 9;
|
||||
|
||||
@@ -2,9 +2,6 @@ package expression;
|
||||
|
||||
import expression.Expression;
|
||||
|
||||
/**
|
||||
* Created by azael on 20/03/17.
|
||||
*/
|
||||
public class Tree {
|
||||
|
||||
private Node root;
|
||||
|
||||
@@ -2,9 +2,6 @@ package statement;
|
||||
|
||||
import expression.Node;
|
||||
|
||||
/**
|
||||
* Created by xawirses on 07/04/17.
|
||||
*/
|
||||
public class Handling {
|
||||
private Node expression;
|
||||
private World first;
|
||||
|
||||
@@ -5,9 +5,6 @@ import expression.Node;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
|
||||
/**
|
||||
* Created by xawirses on 29/03/17.
|
||||
*/
|
||||
public class World {
|
||||
private static int worldId = 1;
|
||||
private String name;
|
||||
|
||||
Reference in New Issue
Block a user