Skip to content
This repository has been archived by the owner on Oct 9, 2022. It is now read-only.

Commit

Permalink
prepare for release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marcofavorito committed Oct 9, 2019
1 parent aeea8aa commit 878afdd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@
## 0.2.1 (2019-10-09)

* Replace parsing library PLY with [Lark](https://github.com/lark-parser/lark).

## 0.2.2 (2019-10-09)

* Fix several issues in the computation of the delta function for LDLf.
2 changes: 1 addition & 1 deletion flloat/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__title__ = "flloat"
__description__ = "A Python implementation of the FLLOAT library."
__url__ = "https://github.com/marcofavorito/flloat.git"
__version__ = "0.2.1"
__version__ = "0.2.2"
__author__ = "Marco Favorito"
__author_email__ = "marco.favorito@gmail.com"
__license__ = "Apache license"
Expand Down
2 changes: 0 additions & 2 deletions tests/test_ldlf.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,6 @@ def test_delta():
assert parser("[B]ff").delta(i_ab) == PLAtomic(ff)

f = parser("!(<(!last)?>end)")
a = f.delta(i_)
b = f.to_nnf().delta(i_)
assert f.delta(i_) == f.to_nnf().delta(i_)
assert f.delta(i_ab) == f.to_nnf().delta(i_ab)

Expand Down

0 comments on commit 878afdd

Please sign in to comment.