Correct README.md

This commit is contained in:
Mateusz Gemzicki 2018-06-07 08:47:51 +00:00
parent 199fa45cf5
commit 71fb198169

View File

@ -32,8 +32,8 @@ Next script checks if signs are rightly put. Brackets are bypassed. Steps:
1. Read sign, check what kind it is (Types are in logic_formula_checker/types.py).
2. Check if it is in expected_sign list.
3. Update expected_sign list base on current sign
```
a ^ ¬ b // take a, write to expected_sign conjuction symbols and negation symbols
^ ¬ b // take ^, check is it in expected_sign, update expected_sign with asci lowercase sings (formula variables) and negation signs
```
a ^ ¬ b # take a, write to expected_sign conjuction symbols and negation symbols
^ ¬ b # take ^, check is it in expected_sign, update expected_sign with asci lowercase sings (formula variables) and negation signs
```