Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
zengler committed Jun 3, 2018
2 parents 16479d0 + da726b0 commit 976c57f
Show file tree
Hide file tree
Showing 95 changed files with 12,289 additions and 414 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![wercker status](https://app.wercker.com/status/24c4765f3a0d79520ad80a1e4c20cfa2/s/master "wercker status")](https://app.wercker.com/project/bykey/24c4765f3a0d79520ad80a1e4c20cfa2) [![Coverage Status](https://coveralls.io/repos/logic-ng/LogicNG/badge.svg?branch=master&service=github)](https://coveralls.io/github/logic-ng/LogicNG?branch=master) ![License](https://img.shields.io/badge/license-Apache%202-blue.svg) ![Version](https://img.shields.io/badge/version-1.3.1-ff69b4.svg)
[![wercker status](https://app.wercker.com/status/24c4765f3a0d79520ad80a1e4c20cfa2/s/master "wercker status")](https://app.wercker.com/project/bykey/24c4765f3a0d79520ad80a1e4c20cfa2) [![Coverage Status](https://coveralls.io/repos/logic-ng/LogicNG/badge.svg?branch=master&service=github)](https://coveralls.io/github/logic-ng/LogicNG?branch=master) ![License](https://img.shields.io/badge/license-Apache%202-blue.svg) ![Version](https://img.shields.io/badge/version-1.4.0-ff69b4.svg)

<img src="https://github.com/logic-ng/LogicNG/blob/master/doc/logo/logo_big.png" alt="logo" width="300">

Expand All @@ -19,7 +19,7 @@ LogicNG is released in the Maven Central Repository. To include it just add
<dependency>
<groupId>org.logicng</groupId>
<artifactId>logicng</artifactId>
<version>1.3.1</version>
<version>1.4.0</version>
</dependency>
```
to you Maven POM.
Expand Down Expand Up @@ -60,6 +60,18 @@ The library is released under the Apache License and therefore is free to use in

## Changelog

### Version 1.4.0 (Release June 2018)
* BDD package (based on Buddy) for creating, manipulating, and writing BDDs
* Creation of BDDs from LogicNG formulas
* CNF, DNF transformation of BDDs
* Restriction, existential & universal quantifier elimination
* Model counting & enumeration
* Different static variable ordering heuristics (FORCE, DFS, BFS, MinMax)
* Writing BDDs in the GraphViz .dot format
* Quine-McCluskey Implementation for minimizing canonical DNFs
* New formula transformation for anonymizing formulas
* Internal parser and IO improvements. Variables can now start with a digit.

### Version 1.3.1 (Release January 2018)
* Huge performance boost in the model enumeration of MiniSat
* New formula transformation which imports formulas in another formula factory
Expand Down
Binary file modified doc/logo/logo_big.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed doc/logo/logo_small.png
Binary file not shown.
18 changes: 6 additions & 12 deletions 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>1.3.1</version>
<version>1.4.0</version>
<packaging>jar</packaging>

<name>LogicNG</name>
Expand All @@ -43,10 +43,11 @@
<developers>
<developer>
<name>Christoph Zengler</name>
<email>christoph@zengler.eu</email>
<email>christoph@logicng.org</email>
</developer>
<developer>
<name>Steffen Hildebrandt</name>
<email>steffen@logicng.org</email>
</developer>
<developer>
<name>Martin Siegmund</name>
Expand All @@ -69,9 +70,9 @@
<sonar.exclusions>**/LogicNGPropositional*.java,**/LogicNGPseudoBoolean*.java</sonar.exclusions>

<!-- Dependency Versions -->
<version.antlr>4.7</version.antlr>
<version.jacoco>0.7.9</version.jacoco>
<version.coveralls>4.3.0-SNAPSHOT</version.coveralls>
<version.antlr>4.7.1</version.antlr>
<version.jacoco>0.8.0</version.jacoco>
<version.coveralls>4.3.0</version.coveralls>
<version.junit>4.12</version.junit>
<version.assertj>2.8.0</version.assertj>
</properties>
Expand Down Expand Up @@ -255,11 +256,4 @@
</build>
</profile>
</profiles>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
Loading

0 comments on commit 976c57f

Please sign in to comment.