Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RenatoGeh committed Jan 4, 2021
1 parent 7cedff4 commit 23488ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ has many more features compared to the original package, such as
- Constructors for cardinality constraint formulae (at least, at most and exactly);
- Thread safe;
- I/O functions for saving and loading BDDs;
- Convert BDDs to CNF and DNF file formats.
- Convert BDDs to CNF and DNF file formats;
- Print BDD as a CNF or DNF.

The following are references used in this package and the original library.

Expand All @@ -46,7 +47,7 @@ This package is available on the Julia General Registries.
$ julia -e 'using Pkg; Pkg.add("BinaryDecisionDiagrams")'
```

Alternatively, you may add this repository manualy.
Alternatively, you may add this repository manualy and receive nightly updates.

```bash
$ julia -e 'using Pkg; Pkg.add("https://github.com/RenatoGeh/BDD.jl")'
Expand All @@ -71,8 +72,7 @@ recommended you check the [docs](https://renatogeh.github.io/BDD.jl/stable), sin
below does not cover all features.

```julia
import BDD: ⊤, ⊥, variable, , , , ¬, |
# For preserving namespace, use 'using BDD' instead.
using BinaryDecisionDiagrams

println("== True ==")
println(⊤)
Expand Down

2 comments on commit 23488ea

@RenatoGeh
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/27326

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.5 -m "<description of version>" 23488ea3e269567631b4c4eb78ec135fd2053871
git push origin v0.1.5

Please sign in to comment.