Skip to content

Commit

Permalink
Rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
ruberith committed May 3, 2023
1 parent 1a2c76a commit cbf077d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name = "CDCL"
name = "CDCLsat"
uuid = "b71133ba-6b01-47a0-b4fe-e7a9e8ed2c06"
authors = ["ruberith <[email protected]>"]
version = "0.1.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CDCL
# CDCLsat

CDCL SAT Solver

Expand All @@ -14,7 +14,7 @@ Check satisfiability (SAT) of a propositional logic formula in Conjunctive Norma

```
julia> ]
pkg> add CDCL
pkg> add CDCLsat
```

## Usage
Expand Down Expand Up @@ -42,7 +42,7 @@ Note that a model should not be reused.
## Example

```julia
using CDCL
using CDCLsat

model = Model()

Expand Down
2 changes: 1 addition & 1 deletion src/CDCL.jl → src/CDCLsat.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module CDCL
module CDCLsat

export Model, Variable, Clause, @variable, @clause, solve!

Expand Down
3 changes: 2 additions & 1 deletion src/output.jl
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ function output_model(model::Model)::Nothing
title="{yellow}C{/yellow}" *
"{magenta}D{/magenta}" *
"{blue}C{/blue}" *
"{cyan}L{/cyan}",
"{cyan}L{/cyan}" *
"sat",
title_style="bold",
subtitle="v0.1.0",
subtitle_style="bold",
Expand Down

2 comments on commit cbf077d

@ruberith
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/82829

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.0 -m "<description of version>" cbf077da8fdd6ac88346bf48d43407adb260c021
git push origin v0.1.0

Please sign in to comment.