Skip to content

Commit

Permalink
Final 2.4.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
czengler committed Dec 1, 2022
1 parent ad3fc80 commit 2b6d23c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ LogicNG uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Changed

- Allowing symbol `#` in variable names for the `PropositionalParser` and the `PseudoBooleanParser`.
- Set the Java Jigsaw automatic module name to `logicng` in the manifest.

## [2.4.0] - 2022-11-24

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ An extensive white paper with a lot of interesting use cases of LogicNG for conf

## Philosophy

The most important philosophy of the library is to avoid unnecessary object creation. Therefore formulas can only be generated via formula factories. A formula
The most important philosophy of the library is to avoid unnecessary object creation. Therefore, formulas can only be generated via formula factories. A formula
factory assures that a formula is only created once in memory. If another instance of the same formula is created by the user, the already existing one is
returned by the factory. This leads to a small memory footprint and fast execution of algorithms. Formulas can cache the results of algorithms executed on them
and since every formula is hold only once in memory it is assured that the same algorithm on the same formula is also executed only once.
Expand All @@ -34,7 +34,7 @@ LogicNG is released in the Maven Central Repository. To include it just add
<dependency>
<groupId>org.logicng</groupId>
<artifactId>logicng</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.logicng</groupId>
<artifactId>logicng</artifactId>
<version>2.4.1-SNAPSHOT</version>
<version>2.4.1</version>
<packaging>bundle</packaging>

<name>LogicNG</name>
Expand Down

0 comments on commit 2b6d23c

Please sign in to comment.