Skip to content

Commit cbf077d

Browse files
committed
Rename package
1 parent 1a2c76a commit cbf077d

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "CDCL"
1+
name = "CDCLsat"
22
uuid = "b71133ba-6b01-47a0-b4fe-e7a9e8ed2c06"
33
authors = ["ruberith <[email protected]>"]
44
version = "0.1.0"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CDCL
1+
# CDCLsat
22

33
CDCL SAT Solver
44

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

1515
```
1616
julia> ]
17-
pkg> add CDCL
17+
pkg> add CDCLsat
1818
```
1919

2020
## Usage
@@ -42,7 +42,7 @@ Note that a model should not be reused.
4242
## Example
4343

4444
```julia
45-
using CDCL
45+
using CDCLsat
4646

4747
model = Model()
4848

src/CDCL.jl renamed to src/CDCLsat.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module CDCL
1+
module CDCLsat
22

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

src/output.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ function output_model(model::Model)::Nothing
138138
title="{yellow}C{/yellow}" *
139139
"{magenta}D{/magenta}" *
140140
"{blue}C{/blue}" *
141-
"{cyan}L{/cyan}",
141+
"{cyan}L{/cyan}" *
142+
"sat",
142143
title_style="bold",
143144
subtitle="v0.1.0",
144145
subtitle_style="bold",

0 commit comments

Comments
 (0)